I recently stumbled upon the Object.create()
method in JavaScript, and am trying to deduce how it is different from creating a new instance of an object with new SomeFunction()
, and when you would want to use one over the other.
Consider the following example:
Notice that the same behaviour is observed in both cases. It seems to me that the primary differences between these two scenarios are:
Object.create()
actually forms the prototype of the new object, whereas in the new Function()
from the declared properties/functions do not form the prototype. Object.create()
syntax as you would with the functional syntax. This is logical given the lexical (vs block) type scope of JavaScript.Are the above statements correct? And am I missing something? When would you use one over the other?
EDIT: link to jsfiddle version of above code sample: http://jsfiddle.net/rZfYL/
Very simply said, new X
is Object.create(X.prototype)
with additionally running the constructor
function. (And giving the constructor
the chance to return
the actual object that should be the result of the expression instead of this
.)
That’s it. :)
The rest of the answers are just confusing, because apparently nobody else reads the definition of new
either. ;)