What is Object.create() in Javascript?
Prerequisite - understanding of proto
Simple Example
The Object.create() method creates a new object, using an existing object as the prototype of the newly created object. Confusing? Let's understand it using an example
let src = {a: 1};
let resu...
subm.hashnode.dev2 min read