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

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');
主站蜘蛛池模板: 武城县| 读书| 手机| 会昌县| 福海县| 怀仁县| 南宫市| 广德县| 新昌县| 石首市| 广昌县| 南丹县| 天峨县| 瓦房店市| 元谋县| 类乌齐县| 昂仁县| 溧阳市| 永泰县| 蒙自县| 保康县| 兰考县| 舞阳县| 沿河| 郴州市| 中宁县| 林州市| 雷山县| 新化县| 海原县| 萝北县| 互助| 奉节县| 佛教| 巩留县| 黎城县| 浦城县| 丰台区| 高安市| 汉阴县| 濮阳县|