javascript create new object instanc code example
Example 1: how to create a object in javascript
var a = {
name: "aakash",
age:30
}
Example 2: new instance of object javascript
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
var car1 = new Car('Eagle', 'Talon TSi', 1993);
console.log(car1.make);
// expected output: "Eagle"