Object.create() builds an object that inherits directly from the one passed as its first argument and with constructor functions, the newly created object inherits from the constructor's prototype
Is this correct and is there any other difference?
Object.create() builds an object that inherits directly from the one passed as its first argument and with constructor functions, the newly created object inherits from the constructor's prototype
Is this correct and is there any other difference?