Skip to content

Instantly share code, notes, and snippets.

@Olical
Created June 3, 2011 16:10
Show Gist options
  • Save Olical/1006601 to your computer and use it in GitHub Desktop.
Save Olical/1006601 to your computer and use it in GitHub Desktop.
Adds the create functionallity to Objects in JavaScript. From Douglas Crockford
if(typeof Object.create!=="function")Object.create=function(b){function a(){}a.prototype=b;return new a};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment