Skip to content

Instantly share code, notes, and snippets.

@julsfelic
Created January 26, 2013 11:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julsfelic/4641932 to your computer and use it in GitHub Desktop.
Save julsfelic/4641932 to your computer and use it in GitHub Desktop.
Prototypal Inheritance Pattern (Obj inherit from Obj)
if (typeof Object.create !== 'function') {
Object.create = function(o) {
function F() {};
f.prototype = o;
return new F();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment