Class Constructor Example
Preview
Code
<script>
class Car {
constructor(brand, year){
this.brand = brand;
this.year = year;
}
}
let car = new Car("Toyota", 2023);
console.log(car.brand, car.year);
</script>
<script>
class Car {
constructor(brand, year){
this.brand = brand;
this.year = year;
}
}
let car = new Car("Toyota", 2023);
console.log(car.brand, car.year);
</script>