javascript class instanceof code example
Example 1: instanceof javascript
var color = "red";
var color2 = {};
color instanceof String // will return true
color2 instanceof Object // will return true
Example 2: 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');