官术网_书友最值得收藏!

A matter of style

Like the previous chapters, we will spend some time discussing the style considerations while creating arrays.

  • Use the literal syntax for array creation:
    // bad
    const items = new Array();
    // good
    const items = [];
  • Use Array#push instead of a direct assignment to add items to an array:
    const stack = [];
    // bad
    stack[stack.length] = 'pushme';
    // good
    stack.push('pushme');
主站蜘蛛池模板: 成都市| 阳东县| 新昌县| 资兴市| 临湘市| 康马县| 和静县| 建水县| 台湾省| 门头沟区| 湖口县| 仪征市| 庐江县| 隆化县| 富川| 明星| 安塞县| 榆树市| 黄梅县| 绥芬河市| 新兴县| 钟山县| 宜州市| 台中市| 临沂市| 来凤县| 盐山县| 枝江市| 临猗县| 思南县| 绥德县| 莲花县| 佛山市| 民权县| 台中市| 津市市| 包头市| 长汀县| 武义县| 崇信县| 忻城县|