how to create object contains objects in javascript code example
Example 1: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
Example 2: how to create a object in javascript
var a = {
name: "aakash",
age:30
}