js objects code example
Example 1: js object
let car = {
name: "BMW",
colour: "black",
year: "2020",
owner: {
names = ["Andy" , "Steve" , "Tony" ]
}
};
Example 2: javascript object
var person = {
first_name : "Marty",
last_name : "Mcfly",
born : 1968,
died : 1933,
lovers: ["Jennifer Parker","Baines McFly"]
};
Example 3: js objects
const dog = {
name: "Rusty",
breed: "unknown",
isAlive: false,
age: 7
}
dog.age;
dog["age"];
dog.breed = "mutt";
dog["age"] = 8;
Example 4: js objects
var object = {
property1: "a",
property2: "b",
}
function object(property1, property2)
{
this.property1 = property1;
this.property2 = property2;
}
var mouse = new object("ab", "cd");
Example 5: js objects
var object = {
property1: "a",
property2: "b",
}
function object(property1, property2)
{
this.property1 = property1;
this.property2 = property2;
}
var mouse = new object("ab", "cd");
Example 6: js objects
var object = {
property1: "a",
property2: "b",
}
function object(property1, property2)
{
this.property1 = property1;
this.property2 = property2;
}
var mouse = new object("ab", "cd");