- 博客(6)
- 收藏
- 关注
原创 javascript 中 call、apply、bind 三者的区别?
1.calllet fn = function(a,b){ console.log(this,a,b);}let obj = {name:"obj"};(1): 非严格模式fn.call(obj,1,2); // this:obj a:1 b:2fn.call(1,2); // this:1 a:2 b:undefinedfn.call(); // this:window a:undefined ...
2021-06-01 01:38:03 222 2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人