es6 - foreach

foreach ...

 1     // es5 - foreach
 2     arr.forEach(function(value, index, arr) {
 3         console.log(value, index, arr, '长度:', index);
 4     });
 5 
 6 
 7     // es6 - foreach
 8     arr.forEach((value, index, arr) => {
 9         console.log(value, '长度:', index, arr);
10     });
posted @ 2018-07-21 17:43  Sunsin  阅读(1458)  评论(0编辑  收藏  举报