Created
November 7, 2016 22:35
-
-
Save victorvhpg/7d21020df7756b0ce8c055ca54555a70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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