欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ES6 箭头函数: () => {} 与匿名函数 function() {}

程序员文章站 2023-12-21 13:11:34
...
function foo() {
   setTimeout( () => {
      console.log("id:", this.id);
   },100);
}

foo.call( { id: 42 } );

id: 42

function foo() {
   setTimeout( function() {
      console.log("id:", this.id);
   },100);
}

foo.call( { id: 42 } );

id: undefined

上一篇:

下一篇: