What is the result of the following code?
class Car {
constructor(brand) {
this.brand = brand;
}
}
const myCar = new Car('Ford');
console.log(myCar.brand);
What is the result of the following code?
class Car {
constructor(brand) {
this.brand = brand;
}
}
const myCar = new Car('Ford');
console.log(myCar.brand);