我正在学习JavaScript,但我真的不明白,为什么当我们有了构造函数时却会有类。
两者之间的主要区别是什么
function Auto(color, price) {
this.color = color;
this.price = price;
this.drive = function() {
console.log("blah");
}
};
这:
class User {
constructor(color, price) {
this.color = color;
this.price = price;
this.drive = function() {
console.log("blah");
}
}
}
谢谢!