W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
4.1?使用字面值創(chuàng)建數(shù)組。
// bad
const items = new Array();
// good
const items = [];
4.2?向數(shù)組添加元素時使用 Arrary#push 替代直接賦值。
const someStack = [];
// bad
someStack[someStack.length] = 'abracadabra';
// good
someStack.push('abracadabra');
4.3?使用拓展運算符?...
?復制數(shù)組。
// bad
const len = items.length;
const itemsCopy = [];
let i;
for (i = 0; i < len; i++) {
itemsCopy[i] = items[i];
}
// good
const itemsCopy = [...items];
4.4?使用 Array#from 把一個類數(shù)組對象轉換成數(shù)組。
const foo = document.querySelectorAll('.foo');
const nodes = Array.from(foo);
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: