Skip to content

Instantly share code, notes, and snippets.

@cagartner
Last active December 17, 2015 07:49
Show Gist options
  • Select an option

  • Save cagartner/5575925 to your computer and use it in GitHub Desktop.

Select an option

Save cagartner/5575925 to your computer and use it in GitHub Desktop.
Criar objeto em javascript
var nomeDoObjeto = {
// Variável
opcao: 'detalhes',
// função
funcao: function () {
return this;
},
};
// Chamada
// ----------------------------
// Variável
print(nomeDoObjeto.opcao);
// Função
nomeDoObjeto.funcao();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment