摘要:
1、模块化、Promise、class 2、let/const、箭头函数、多行字符串/模板变量、解构赋值 3、块级作用域、函数默认参数 阅读全文
摘要:
1、JS构造函数 function fn(x, y) { this.x = x; this.y = y;} 使用 var a = new fn(1, 2) 使用prototype进行扩展,在fn.prototype上定义的方法,在所有fn的实例中都能使用,如: fn.prototype.add = 阅读全文
摘要:
1、模块化的基本语法 export暴露(注意有无default),import引用 2、开发环境-babel(Babel is a JavaScript compiler) 安装babel-core、babel-preset-2015、babel-preset-latest,使用babel来对es6 阅读全文