摘要: function fn1() { console.log(1); } function fn2() { console.log(2); } fn1.call(fn2); // 1 fn1.call.call(fn2); // 2 首先fn1通过原型链找到Function.prototype上的cal 阅读全文
posted @ 2018-06-08 15:24 吴小样 阅读(205) 评论(0) 推荐(0) 编辑