您好,登錄后才能下訂單哦!
這篇文章主要介紹JS中數(shù)組遍歷方法 for 、forEach() 、for/in、for/of有什么區(qū)別,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
我們有多種方法來遍歷 JavaScript 的數(shù)組或者對象,而它們之間的區(qū)別非常讓人疑惑。Airbnb 編碼風(fēng)格禁止使用 for/in 與 for/of,你知道為什么嗎?
這篇文章將詳細(xì)介紹以下 4 種循環(huán)語法的區(qū)別:
for (let i = 0; i < arr.length; ++i)
arr.forEach((v, i) => { /* ... */ })
for (let i in arr)
for (const v of arr)
使用for
和for/in
,我們可以訪問數(shù)組的下標(biāo),而不是實際的數(shù)組元素值:
for (let i = 0; i < arr.length; ++i) { console.log(arr[i]); } for (let i in arr) { console.log(arr[i]); }
使用for/of
,則可以直接訪問數(shù)組的元素值:
for (const v of arr) { console.log(v); }
使用forEach()
,則可以同時訪問數(shù)組的下標(biāo)與元素值:
arr.forEach((v, i) => console.log(v));
JavaScript 的數(shù)組就是 Object,這就意味著我們可以給數(shù)組添加字符串屬性:
const arr = ["a", "b", "c"]; typeof arr; // 'object' arr.test = "bad"; // 添加非數(shù)字屬性 arr.test; // 'abc' arr[1] === arr["1"]; // true, JavaScript數(shù)組只是特殊的Object
4 種循環(huán)語法,只有for/in
不會忽略非數(shù)字屬性:
const arr = ["a", "b", "c"]; arr.test = "bad"; for (let i in arr) { console.log(arr[i]); // 打印"a, b, c, bad" }
正因為如此,使用for/in
遍歷數(shù)組并不好。
其他 3 種循環(huán)語法,都會忽略非數(shù)字屬性:
const arr = ["a", "b", "c"]; arr.test = "abc"; // 打印 "a, b, c" for (let i = 0; i < arr.length; ++i) { console.log(arr[i]); } // 打印 "a, b, c" arr.forEach((el, i) => console.log(i, el)); // 打印 "a, b, c" for (const el of arr) { console.log(el); }
要點(diǎn): 避免使用for/in
來遍歷數(shù)組,除非你真的要想要遍歷非數(shù)字屬性??梢允褂?ESLint 的guard-for-in規(guī)則來禁止使用for/in
。
JavaScript 數(shù)組可以有空元素。以下代碼語法是正確的,且數(shù)組長度為 3:
const arr = ["a", , "c"]; arr.length; // 3
讓人更加不解的一點(diǎn)是,循環(huán)語句處理['a',, 'c']
與['a', undefined, 'c']
的方式并不相同。
對于['a',, 'c']
,for/in
與forEach
會跳過空元素,而for
與for/of
則不會跳過。
// 打印"a, undefined, c" for (let i = 0; i < arr.length; ++i) { console.log(arr[i]); } // 打印"a, c" arr.forEach(v => console.log(v)); // 打印"a, c" for (let i in arr) { console.log(arr[i]); } // 打印"a, undefined, c" for (const v of arr) { console.log(v); }
對于['a', undefined, 'c']
,4 種循環(huán)語法一致,打印的都是"a, undefined, c"。
還有一種添加空元素的方式:
// 等價于`['a', 'b', 'c',, 'e']` const arr = ["a", "b", "c"]; arr[5] = "e";
還有一點(diǎn),JSON 也不支持空元素:
JSON.parse('{"arr":["a","b","c"]}'); // { arr: [ 'a', 'b', 'c' ] } JSON.parse('{"arr":["a",null,"c"]}'); // { arr: [ 'a', null, 'c' ] } JSON.parse('{"arr":["a",,"c"]}'); // SyntaxError: Unexpected token , in JSON at position 12
要點(diǎn): for/in
與forEach
會跳過空元素,數(shù)組中的空元素被稱為"holes"。如果你想避免這個問題,可以考慮禁用forEach
:
parserOptions: ecmaVersion: 2018 rules: no-restricted-syntax: - error - selector: CallExpression[callee.property.name="forEach"] message: Do not use `forEach()`, use `for/of` instead
for
,for/in
與for/of
會保留外部作用域的this
。
對于forEach
, 除非使用箭頭函數(shù),它的回調(diào)函數(shù)的 this 將會變化。
使用 Node v11.8.0 測試下面的代碼,結(jié)果如下:
"use strict"; const arr = ["a"]; arr.forEach(function() { console.log(this); // 打印undefined }); arr.forEach(() => { console.log(this); // 打印{} });
要點(diǎn): 使用 ESLint 的no-arrow-callback
規(guī)則要求所有回調(diào)函數(shù)必須使用箭頭函數(shù)。
還有一點(diǎn),forEach()
不能與 Async/Await 及 Generators 很好的"合作"。
不能在forEach
回調(diào)函數(shù)中使用 await:
async function run() { const arr = ['a', 'b', 'c']; arr.forEach(el => { // SyntaxError await new Promise(resolve => setTimeout(resolve, 1000)); console.log(el); }); }
不能在forEach
回調(diào)函數(shù)中使用 yield:
function run() { const arr = ['a', 'b', 'c']; arr.forEach(el => { // SyntaxError yield new Promise(resolve => setTimeout(resolve, 1000)); console.log(el); }); }
對于for/of
來說,則沒有這個問題:
async function asyncFn() { const arr = ["a", "b", "c"]; for (const el of arr) { await new Promise(resolve => setTimeout(resolve, 1000)); console.log(el); } } function* generatorFn() { const arr = ["a", "b", "c"]; for (const el of arr) { yield new Promise(resolve => setTimeout(resolve, 1000)); console.log(el); } }
當(dāng)然,你如果將forEach()
的回調(diào)函數(shù)定義為 async 函數(shù)就不會報錯了,但是,如果你想讓forEach
按照順序執(zhí)行,則會比較頭疼。
下面的代碼會按照從大到小打印 0-9:
async function print(n) { // 打印0之前等待1秒,打印1之前等待0.9秒 await new Promise(resolve => setTimeout(() => resolve(), 1000 - n * 100)); console.log(n); } async function test() { [0, 1, 2, 3, 4, 5, 6, 7, 8, 9].forEach(print); } test();
要點(diǎn): 盡量不要在forEach
中使用 aysnc/await 以及 generators。
簡單地說,for/of
是遍歷數(shù)組最可靠的方式,它比for
循環(huán)簡潔,并且沒有for/in
和forEach()
那么多奇怪的特例。for/of
的缺點(diǎn)是我們?nèi)∷饕挡环奖?,而且不能這樣鏈?zhǔn)秸{(diào)用forEach()
. forEach()
。
使用for/of
獲取數(shù)組索引,可以這樣寫:
for (const [i, v] of arr.entries()) { console.log(i, v); }
以上是JS中數(shù)組遍歷方法 for 、forEach() 、for/in、for/of有什么區(qū)別的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。