Different methods of writing an object in JavaScript
There are many ways in javascript to write object. Here, let us only focus on the various ways in which JavaScript allows us to create objects. Object literal var obj = { name : "car" } console.log(obj) // {name: "car"} ‘new’ keyword var obj = new Ob...
Mar 15, 20231 min read18
