0%

ES6语法

ES6语法

ES6语法

类和对象

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

<script>
// 创建类 class 创建一个 明星类
class Star {
// 构造函数
constructor(uname){
this.uname = uanem;
}
}

// 利用类创建对象 new
var ldh = new Star('刘德华');
console.log(ldh.uname);

</script>
------ 本文结束------

欢迎关注我的其它发布渠道