I've a prototype Node, of which I create several objects.
During the lifetime of these objects, I may need them to become ValueNode or PropertyNode. I currently handle this by using a helper for each "subclass", and sharing a commong interface on both helpers. Think of something like a state pattern.
However, I'd like to improve this design, by actually extending the existing objects with the aditional functionality, and not using helpers.
ie:
n = new Node();
...
// n needs to become a ValueNode
// ???
n.methodDefinedForValueNodesOnly();
Is this possible in javascript? And is it "good practice"?