Skip to content

Instantly share code, notes, and snippets.

@doug2k1
Created September 6, 2017 13:52
Show Gist options
  • Save doug2k1/e682de670faf8bd89132c15695863835 to your computer and use it in GitHub Desktop.
Save doug2k1/e682de670faf8bd89132c15695863835 to your computer and use it in GitHub Desktop.
// As linhas comentadas mostram o que o 'new' faz pra gente
const Player = function (name) {
// const this = {}
this.name = name
this.hp = 1000
this.mp = 0
// return this
}
// Função chamada com 'new', portanto o 'this' será
// um objeto novo.
const cloud = new Player('Cloud')
console.log(cloud.name, cloud.hp, cloud.mp) // Cloud 1000 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment