what is considered an object 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: 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