Class
// define a class
class Car {
// constructor method
constructor(name, year) {
this.name = name;
this.year = year;
}
// other methods
run() {
// ...
}
}
// create new instance
let myCar1 = new Car("Ford", 2014);Static
Reference
Last updated