Different ways to create an object.
There are many ways to create an object in javascript as below:
Object Constructor
The simplest ways to create an empty object using the object constructor.
var object = new Object();
Note: Currently, this method is not recommended.
Object Creat...
devsagarkumarjha.hashnode.dev2 min read