亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

js中遍歷數組:for vs forEach vs map

js中遍歷數組:for vs forEach vs map

郎朗坤 2018-08-01 07:10:25
最近在思考高效遍歷數組的方式,也 google 了一下,然后在這篇博客里(.map() vs .forEach() vs for())博主推薦的是 map > forEach > for.     var array = [1, 2, 3];     //for     for (let i = array.length; i--;) {         console.log(array[i]);     }     //forEach    array.forEach((item, index, array) => console.log(item));     //map     array.map(n => console.log(n));     //for-of    for (val of array) {         console.log(val);     }     //iterator    for (let entry, itr = array[Symbol.iterator](); !(entry = itr.next()).done; ) {         console.log(entry.value);     }求解答,推薦的數組遍歷方式
查看完整描述

目前暫無任何回答

  • 0 回答
  • 0 關注
  • 785 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號