- 类:class
- 模块化 export import
- 箭头函数 ()=>{}
- 函数参数默认值 var color=color || 'red'
- 模板字符串 var name='hello ${first}';
- 解构赋值;var student={}; const {name,age,city}=student;name//xx
- 延展操作符;const a=[1,2,3];fn(…a);//1,2,3;arr=[1];arr2=[2];arr3=[…arr,…arr2];等同于 arr.concat(arr2); let objClone={…obj}//潜拷贝
- 对象属性简写:const name='jk'; const student ={name,}
- Promise:new promise((){}).then
- let和const;块作用域 变量 常量;