箭头函数 与 forEach
array.forEach(function(item,index){
}.bind(this));
等同于
array.forEach((item,index) =>{
});
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »
array.forEach(function(item,index){
}.bind(this));
等同于
array.forEach((item,index) =>{
});
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »