Tagged Questions
1
vote
1answer
244 views
Object.create and inheritance
What is the difference between the resulting objects in the following examples:
var EventEmitter = require('events').EventEmitter;
var oProto = Object.create(EventEmitter.prototype);
var oProto2 = ...
5
votes
1answer
783 views
Advantage of using Object.create
Similar to, but different from this question. The code below is from JavaScript: The Definitive Guide. He's basically defining an inherit method that defers to Object.create if it exists, otherwise ...
4
votes
2answers
992 views
Is there any reason to use Object.create() or new in JavaScript?
I've been using the new keyword in JavaScript so far. I have been reading about Object.create and I wonder if I should use it instead. What I don't quite get is that I often need to run construction ...
7
votes
1answer
535 views
Object.create vs direct prototypical inheritance
I have been playing around with Object.create in the EcmaScript 5 spec, and I am trying to create a multiple inheritance type structure.
Say I have a few functions: a, b, and c. With only dealing ...