var length=10;function fn() { console.log(this.length);}var obj = { length: 5, method: function(fn) { fn();arguments[0]();}};obj.method(fn, 1);答案为10 2 。 2是怎么得出来的。对 arguments[0]()不是太懂 求解,谢谢!
添加回答
举报
0/150
提交
取消