Create objects using class, constructor function, Factory function in JavaScript
in javaScript, you can instantiate an object using three different method
Create objects using class
class Employee {
constructor(name,age,sex)
{
this.name = name;
this.age = age;
this.sex = sex;
}
}
var employ...
ahmednour.hashnode.dev2 min read