Skip to content

Instantly share code, notes, and snippets.

@renatoargh
Created July 3, 2012 20:39
Show Gist options
  • Select an option

  • Save renatoargh/3042892 to your computer and use it in GitHub Desktop.

Select an option

Save renatoargh/3042892 to your computer and use it in GitHub Desktop.
var pessoa = (function(nome){
var _nome = nome; //1
return {
getNome: function() { //2
return _nome; //3
}
};
})("Renato Gama"); //4
console.log(pessoa.getNome()); //5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment