airbnb JAVASCRIPT规范ARRAYS解构赋值StringsFunctionsArrow FunctionsClasses & ConstructorsModulesIterators and GeneratorsPropertiesVariablesHoisting(提升)Comparison Operators & EqualityBlocksControl StatementsCommentsWhitespaceCommasSemicolonsType Casting & Co
1. 常量使用const;2. 变量使用let;3. let 和 const 的块级作用域;4. 不使用new来创建数组和对象;5. 使用对象方法的简写(es6);// badconst atom = { value: 1, addValue: function (value) { return atom.value + value; },};/...