Multiple inheritance in Javascript
This posts gives a short code sample on how to implement multiple inheritance in Javascript.
function multi() {
var n = {},
stuff, j = 0,
len = arguments.length;
for (j = 0; j < len; j++) {
stuff = arguments[j];
...
blog.adarshkonchady.com1 min read