function add(a,b) { console.log(`type this ${ typeof this}, name ${ this.name}`); console.log(a+b); } function sub(a,b) { this.name = 'sub name'; console.log(this); console.log(a-b); } add.call(sub,3,1); sub.call(name,3,1); 复制代码
本文共 246 字,大约阅读时间需要 1 分钟。
function add(a,b) { console.log(`type this ${ typeof this}, name ${ this.name}`); console.log(a+b); } function sub(a,b) { this.name = 'sub name'; console.log(this); console.log(a-b); } add.call(sub,3,1); sub.call(name,3,1); 复制代码
转载地址:http://gjzda.baihongyu.com/