Skip to content

Instantly share code, notes, and snippets.

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

  • Save durvalrafael/38aa6df031d3ece98b878c08c7c7af7f to your computer and use it in GitHub Desktop.

Select an option

Save durvalrafael/38aa6df031d3ece98b878c08c7c7af7f to your computer and use it in GitHub Desktop.
Exemplo de Classe ES2015
class Teste {
constructor() {
console.log("Constructor inicado");
this.showMessage();
}
showMessage(){
console.log("Método showMessage acionado");
}
}
var teste = new Teste();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment