You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varlength=10;// var 定义的变量在当前作用域生效functionfn(){console.log(this.length);}varobj={length: 5,method: function(fn){fn();arguments[0]();fn.call(obj,12);},};obj.method(fn,1);functionfn(e){console.log(this);}div.addEventListener("click",fn);
1.输出返回值
2. 实现一个带leading trailing策略的 debounce
3. 假设你正在爬楼梯。需要 n 阶你才能到达楼顶。 每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢?
The text was updated successfully, but these errors were encountered: