class inside object js code example
Example 1: 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');
Example 2: javascript classes
class SayHelloTo {
name (to) {
console.log(`Hello ${to}`);
}
constructor (to) {
this.name(to);
}
}
const helloWorld = new SayHelloTo(World);