What is the result of the following code?
class Car {
constructor() {
this.type = 'Car';
}
static brand() {
return 'Generic';
}
}
console.log(Car.brand());
What is the result of the following code?
class Car {
constructor() {
this.type = 'Car';
}
static brand() {
return 'Generic';
}
}
console.log(Car.brand());