to create object in javascript code example
Example 1: Build JavaScript Objects
var myDog = {
name: "gozi",
legs: 4,
tails: 1,
friends: ["Ted", "Fred"]
};
Example 2: js objects
//initialized object
var object = {
property1: "a",
property2: "b",
}
//object initializer function
function object(property1, property2)
{
this.property1 = property1;
this.property2 = property2;
}
//initializing using the initializer function
var mouse = new object("ab", "cd");