obj in javascript code example
Example 1: javascript object
var person = {
first_name : "Marty",
last_name : "Mcfly",
born : 1968,
died : 1933,
lovers: ["Jennifer Parker","Baines McFly"]
};
Example 2: objects in javascript
let car = {
engineNumber: 1234
brand: 'BMW',
break: function (){}
}
Example 3: js obj
var obj = {my:"sql", nice:[69, 420]};
obj.my
obj.nice
Example 4: objects javascript
function Dog() {
this.name = "Bailey";
this.colour = "Golden";
this.breed = "Golden Retriever";
this.age = 8;
}
Example 5: objects in javascript
let name = {
name1: 'mark'
}