Skip to content

Instantly share code, notes, and snippets.

@ryankinal
Created September 6, 2016 15:24
Show Gist options
  • Save ryankinal/224cee3c620a73cb6c7663ef8d3de880 to your computer and use it in GitHub Desktop.
Save ryankinal/224cee3c620a73cb6c7663ef8d3de880 to your computer and use it in GitHub Desktop.
var base = {
getType: function() {
return 'badass';
}
};
var user = Object.create(base);
user.setName = function(name) {
this.name = name;
};
var matt = Object.create(user);
console.log(matt.getType()); // "badass";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment