摘要: this call apply bind this 调用点 this 是完全根据调用点(函数是如何被调用的)而绑定的。 function baz() { // 调用栈是: `baz` // 我们的调用点是 global scope(全局作用域) console.log( "baz" ); bar() 阅读全文
posted @ 2021-02-17 15:23 团叽 阅读(44) 评论(0) 推荐(0) 编辑