Skip to content

Instantly share code, notes, and snippets.

@rodrigo-x
Created October 15, 2012 00:26
Show Gist options
  • Save rodrigo-x/3890271 to your computer and use it in GitHub Desktop.
Save rodrigo-x/3890271 to your computer and use it in GitHub Desktop.
snippet - conceito...
var Pessoa = Pessoa || {};
(function (o) {
o.setName = function (val) {
this.name = val;
};
o.setAge = function (val) {
this.Age = val;
}
})(Pessoa);
Pessoa.setName("Foo");
Pessoa.setAge("Bar");
console.log(Pessoa.name);
console.log(Pessoa.Age);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment