* [4.1](https://github.com/yuche/javascript#4.1) 使用字面值创建数组。
~~~
// bad
const items = new Array();
// good
const items = [];
~~~
* [4.2](https://github.com/yuche/javascript#4.2) 向数组添加元素时使用 Arrary#push 替代直接赋值。
~~~
const someStack = [];
// bad
someStack[someStack.length] = 'abracadabra';
// good
someStack.push('abracadabra');
~~~
* [4.3](https://github.com/yuche/javascript#4.3) 使用拓展运算符 `...` 复制数组。
~~~
// 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](https://github.com/yuche/javascript#4.4) 使用 Array#from 把一个类数组对象转换成数组。
~~~
const foo = document.querySelectorAll('.foo');
const nodes = Array.from(foo);
~~~
- 关于
- 1. 类型
- 2. 引用
- 3. 对象
- 4. 数组
- 5. 解构
- 6. 字符串
- 7. 函数
- 8. 箭头函数
- 9. 构造函数
- 10. 模块
- 11. Iterators & Generators
- 12. 属性
- 13. 变量
- 14. 提升
- 15. 比较运算符 & 等号
- 16. 代码块
- 17. 注释
- 18. 空白
- 19. 逗号
- 20. 分号
- 21. 类型转换
- 22. 命名规则
- 23. 存取器
- 24. 事件
- 25. jQuery
- 26. ECMAScript 5 兼容性
- 27. ECMAScript 6 编码规范
- 28. 测试
- 29. 性能
- 30. 资源
- 31. 使用人群
- 32. 翻译
- 33. JavaScript 编码规范说明
- 34. 一起来讨论Javascript
- 35. Contributors
- 36. License