Skip to content

Instantly share code, notes, and snippets.

@luccastera
Created October 6, 2011 15:45
Show Gist options
  • Save luccastera/1267746 to your computer and use it in GitHub Desktop.
Save luccastera/1267746 to your computer and use it in GitHub Desktop.
Javascript Object.create
if (typeof Object.create !== 'function') {
Object.create = function(o) {
var F = function() {};
F.prototype = o;
return new F();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment