Skip to content

Instantly share code, notes, and snippets.

@renatoargh
Created July 3, 2012 19:36
Show Gist options
  • Save renatoargh/3042316 to your computer and use it in GitHub Desktop.
Save renatoargh/3042316 to your computer and use it in GitHub Desktop.
function teste(){ }; //1
var teste = function teste(){ }; //2
var teste = function(){ }; //3
var objeto = { //4
teste: function(){ };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment