Skip to content

Instantly share code, notes, and snippets.

@durvalrafael
Created May 24, 2017 23:20
Show Gist options
  • Select an option

  • Save durvalrafael/5d6e8c243113a369591ae5a85aab828b to your computer and use it in GitHub Desktop.

Select an option

Save durvalrafael/5d6e8c243113a369591ae5a85aab828b to your computer and use it in GitHub Desktop.
Exemplo de arrow function
class Teste {
constructor() {
this.init();
}
init(){
//Arrow Funcion
let showMessage = (message) => {
//não perde o escopo (this)
return this.getMessage(this.getMessage());
}
console.log(showMessage());
}
getMessage(){
return "Olá";
}
}
var teste = new Teste();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment