摘要: 1 "use strict" 2 function fn(a,b){ 3 console.log(this) 4 } 5 fn(1, 2) 6 //等价于 7 fn.call(undefined, 1, 2) 8 fn.apply(undefined, [1, 2]) 阅读全文
posted @ 2018-03-09 09:25 啊董在路上 阅读(77) 评论(0) 推荐(0) 编辑