Write Your JavaScript Code Here

// 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: