how to create instance of a class in javascript code example
Example: how to create instance of class in javascript
class Hello {
person(name){
this.name = name;
}
// Constructor - Important except for JSX
constructor(name){
this.person(name);
console.log(`Hello ${this.name}`);
}
}
const helloInstance = new Hello('john doe');