Write Your JavaScript Code Here
Run
Black
Copy Code
// Object :- A javaScript object is an entity having state and behavior. // by creating the instance let obj = new Object(); obj.name="mayur"; obj.age=22; console.log(obj);
Output: