ES6箭頭函數 this指向

箭頭函數函數體內的this對象,就是定義時所在的對象,而不是使用時所在的對象。函數 例子this var foo = () => { console.log('箭頭函數:', this.box) } var bar = function () { console.log('普通函數:', this.box) } var box = 10 foo.call({ box: 20 })
相關文章
相關標籤/搜索