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

  • JavaScript:Moving to ES2015
  • Ved Antani Simon Timms Narayan Prusty
  • 65字
  • 2021-07-09 19:07:35

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');
主站蜘蛛池模板: 枣强县| 伊宁市| 阜南县| 江都市| 会理县| 高淳县| 金湖县| 漳平市| 迁安市| 偃师市| 济源市| 天等县| 固始县| 霞浦县| 石台县| 海城市| 长葛市| 辉县市| 海盐县| 涿鹿县| 军事| 神农架林区| 江门市| 临沧市| 都兰县| 玉林市| 万年县| 济南市| 崇明县| 潞城市| 宜兴市| 涿鹿县| 白沙| 鹿泉市| 敦化市| 瑞昌市| 东至县| 南开区| 镇雄县| 湘潭县| 微博|