create object with javascript code example
Example 1: Build JavaScript Objects
var myDog = {
name: "gozi",
legs: 4,
tails: 1,
friends: ["Ted", "Fred"]
};
Example 2: objects in javascript
var object = {'key':'value','the value can be anything',[1,null,'Dr.Hippo']};