OOP Factories
Lesson Objectives
Create a factory
class Car {
constructor (maker, serialNumber) {
this.serialNumber = serialNumber;
this.maker = maker
}
drive () {
console.log('Vroom Vroom');
}
}
const newCar = new Car('Mazda', 12345);
console.log(newCar);Extra
Create static properties for a class
Last updated