Skip to content

Instantly share code, notes, and snippets.

@erikeldridge
Created March 17, 2011 07:01
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 erikeldridge/873948 to your computer and use it in GitHub Desktop.
Save erikeldridge/873948 to your computer and use it in GitHub Desktop.
Douglas Crockford's object creation method
// Credit: http://javascript.crockford.com/prototypal.html
if (typeof Object.create !== 'function') {
Object.create = function (o) {
function F() {}
F.prototype = o;
return new F();
};
}
newObject = Object.create(oldObje
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment