Object.create() JavaScript

The Javascript Object create() method creates a new object with the specified prototype object and properties. Syntax: Object.create(prototype[, propertiesObj] Parameters: prototype: It represents the target object. It is a required parameter. propertiesObj: It represents enumerable properties that will be added to a newly created object. It is an optional parameter. Return: A new object with … Read more