obj syntax js code example
Example 1: objects in javascript
let object = {
'key1': 'value1',
'key2': 'value2',
'keyn': 'valuen',
};
console.log(object);
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");