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

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');
主站蜘蛛池模板: 闵行区| 新巴尔虎右旗| 阜新市| 巴马| 襄垣县| 巴里| 栖霞市| 禹州市| 泗水县| 罗田县| 安吉县| 中西区| 丰城市| 轮台县| 内黄县| 宁晋县| 普宁市| 九龙坡区| 会昌县| 惠水县| 磐安县| 沐川县| 牟定县| 和田县| 徐汇区| 安远县| 乐山市| 旅游| 高青县| 从江县| 饶阳县| 颍上县| 昌江| 长春市| 海口市| 当雄县| 化隆| 客服| 和田市| 盐池县| 萨迦县|