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