Skip to content

Instantly share code, notes, and snippets.

@vangberg
Created March 9, 2010 15:43
Show Gist options
  • Save vangberg/326711 to your computer and use it in GitHub Desktop.
Save vangberg/326711 to your computer and use it in GitHub Desktop.
Proto = {
clone: function(extend) {
var F = function() {};
F.prototype = this;
var o = new F();
for (var attr in extend) {
o[attr] = extend[attr]
}
return o;
}
}
Animal = Proto.clone();
Horse = Animal.clone({
name: "horse",
speed: 45
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment