ES6必知,速看!(2)

part 1 类

特点:用class 声明,本质是function,类名建议大写开头
为了更好的学习类,首先要掌握以下单词:

constructor 构造器
super 超级
extends 继承                       
new 实例化                               

实例:

class Cat extends Animal{
constructor(name,color){
    super(name);
    this.color = color;
    }
say(){}
}
var c1 = new Cat("小猫咪","五彩斑斓的黑")

part 2 模块化

script标签的type类型更改为module


                    
                    

你可能感兴趣的:(ES6必知,速看!(2))