变量声明
1 | //变量声明用let or const |
对象属性赋值
1 | const getKey(key){ |
键名与键值的变量名相同,不需要写两遍
1 | const name = 'John'; |
对象数据分组排序
1 | //解构赋值的排前面 |
属性声明
1 | //键名声明不需要写引号,仅有无效标识符需要加引号 |
不要直接调用Object.prototype的方法,比如hasOwnProperty
1 | const obj = { |
use the object spread operator instead of Object.assign to shallow-copy objects
1 | const obj = { |
use spread operator to copy Array
1 | const arr = [1,2,3,4]; |
use Array.from() or spread operator to convert an iterable Object
1 | const foo = document.querySelectorAll('.foo');//it is a nodelist |
use Array.from() instead of spread operator for mapping over iterables ,because it won’t creat an intermediate array
1 | const foo =[1,2,3]; |
use object destructuring when accessing and using multiple properties of an object.
1 | //No |
use array destructuring instead of arr[0].
1 | const render = param =>{ |
use object destructuring if u dont need certaine property
1 | // if u dont need secondName,u can use object destructuring,and what u need exists in rest |
use `` instead of ‘’ or “”
1 | const name = 'John'; |
dont declare function in a block like if,while ,etc
1 | //No |
use spread operator(…) instead of arguments,because arguments is a Array-like Array and not a real Array
1 | //No |
use void 0 instead of undefined
1 | let undefined = 1; |
in a module with single export use default export instead of name export
1 | export default function es6(){} |