class是es6新增的一种语法糖,用于简化js中构造类的过程文章来源地址https://www.toymoban.com/news/detail-678284.html
1.es5中如何构造类?
function Person(name,age){
this.name = name;
this.age = age;
}
Person.prototype.sayName = function(){
return this.name;
}
let p1 = new Person('小明',22);
2.es6中的class方式
class Person2{
constructor(name,age){
//实例化时会被立即调用
this.name = name;
this.age = age;
}
sayName(){
return this.name;
}
sayAge(){
return this.age;
}
}
let p2 = new Person2('小乔',27)
文章来源:https://www.toymoban.com/news/detail-678284.html
到了这里,关于ES6之浅尝辄止1:class的用法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!