javascript create a class that represents a vehicle code example
Example: javascript create class
class Car {
constructor(brand) {
this.carname = brand;
}
}
class Car {
constructor(brand) {
this.carname = brand;
}
}