what's an object in javascript 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: objects in javascript
let object = {
'key1': 'value1',
'key2': 'value2',
'keyn': 'valuen',
};
console.log(object);
Example 4: What is an object
The Object is the real-time entity having some state and behavior.
In Java, Object is an instance of the class having the instance variables
as the state of the object and the methods as the behavior of the object.
The object of a class can be created by using thenewkeyword
Example 5: objects javascript
function Dog() {
this.name = "Bailey";
this.colour = "Golden";
this.breed = "Golden Retriever";
this.age = 8;
}
Example 6: objects in javascript
var object = {'key':'value','the value can be anything',[1,null,'Dr.Hippo']};