4. 數(shù)組

2018-02-24 16:11 更新
  • 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);
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號