首页 > 其他 > 详细

带你正确了解ES6

时间:2017-06-30 23:23:31      阅读:171      评论:0      收藏:0      [点我收藏+]

ES6全名是ECMAScript 6,是JavaScript语言的下一代标准。

Babel,可以将ES6代码转为ES5代码,是一个环境执行

ES6最常用的特性:let, const, class, extends, super, arrow functions, template string, destructuring, default, rest arguments

let, const类似于var,是ES6的新的声明方式。

原型、构造函数,继承看起来更清晰。

 1 class Animal {
 2     constructor(){
 3         this.type = ‘animal‘
 4     }
 5     says(say){
 6         console.log(this.type + ‘ says ‘ + say)
 7     }
 8 }
 9 
10 let animal = new Animal()
11 animal.says(‘hello‘) //animal says hello
12 
13 class Cat extends Animal {
14     constructor(){
15         super()
16         this.type = ‘cat‘
17     }
18 }
19 
20 let cat = new Cat()
21 cat.says(‘hello‘) //cat says hello

 

带你正确了解ES6

原文:http://www.cnblogs.com/chw8/p/7100836.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!