Skip to content

Instantly share code, notes, and snippets.

@vasergen
Created July 20, 2016 09:44
Show Gist options
  • Save vasergen/07c67bd78181547392f00b18e4873230 to your computer and use it in GitHub Desktop.
Save vasergen/07c67bd78181547392f00b18e4873230 to your computer and use it in GitHub Desktop.
//OLOO - delegated objects
var Animal = {
init: function(name) {
this.name = name
},
say: function() {
console.log(`I am ${this.name}`)
}
}
var Rabbit = Object.create(Animal)
Rabbit.skip = function() {
console.log(this.name + ': I skip')
}
var r1 = Object.create(Rabbit)
r1.init('r1')
r1.say()
r1.skip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment