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
推荐阅读
-
ES6 function函数和箭头函数区别
-
ES6 箭头函数: () => {} 与匿名函数 function() {}
-
ES6:箭头函数(Arrow Function)
-
ES6的箭头函数(Arrow Function)
-
js es6 => arrow function箭头函数
-
es6 箭头函数 rest参数 扩展运算符
-
详解PHP匿名函数与注意事项
-
Python3匿名函数lambda介绍与使用示例
-
javascript function(函数类型)使用与注意事项小结
-
php判断某个方法是否存在函数function_exists (),method_exists()与is_callable()区别与用法解析