题解 | #修改 this 指向#
修改 this 指向
http://www.nowcoder.com/practice/a616b3de81b948fda9a92db7e86bd171
主要考点:
1.this作用域
2.call apply bind的理解
3.argument的理解
4.展开语法...的理解
return function() {
console.log('arguments', arguments);
return f.call(oTarget, ...arguments);
}