Skip to content

Instantly share code, notes, and snippets.

@victorvhpg
Created November 7, 2016 22:35
Show Gist options
  • Save victorvhpg/7d21020df7756b0ce8c055ca54555a70 to your computer and use it in GitHub Desktop.
Save victorvhpg/7d21020df7756b0ce8c055ca54555a70 to your computer and use it in GitHub Desktop.
var obj = {
getNome(){
return this.nome;
}
};
//seria o equivalente:
var obj = {
getNome: function(){
return this.nome;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment