create js class object code example
Example 1: how to create a class javascript
class Person {
constructor(name, age) {
this.name = name;
this.age = age;
}
displayInfo() {
return this.name + ' is' + this.age + " years old";
}
}
const Anthony = new Person('Anthony', 32);
Example 2: how to create object in javascript with class
let myCar1 = new Car("Ford", 2014);
let myCar2 = new Car("Audi", 2019);