js object of objects code example
Example 1: js objects
const dog = {
name: "Rusty",
breed: "unknown",
isAlive: false,
age: 7
}
dog.age;
dog["age"];
dog.breed = "mutt";
dog["age"] = 8;
Example 2: objects javascript
function Dog() {
this.name = "Bailey";
this.colour = "Golden";
this.breed = "Golden Retriever";
this.age = 8;
}
Example 3: js create object with properties
var mycar = new Car('Eagle', 'Talon TSi', 1993);
Example 4: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}