Skip to content

Instantly share code, notes, and snippets.

@ogiermaitre
Created October 11, 2018 09:16
Show Gist options
  • Select an option

  • Save ogiermaitre/8f9e9eeffb0f074a5dcc33fda17025af to your computer and use it in GitHub Desktop.

Select an option

Save ogiermaitre/8f9e9eeffb0f074a5dcc33fda17025af to your computer and use it in GitHub Desktop.
[Prototype tips] Some fun with javascript prototy #javascript
const house = {
set houseColor(color){
this.color = color
},
toString(){
return this.color
}
}
const myHouse = Object.create(house)
myHouse.houseColor = 'white'
console.log(myHouse.toString())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment