Skip to content

Instantly share code, notes, and snippets.

@tarsisazevedo
Created November 8, 2011 21:23
Show Gist options
  • Save tarsisazevedo/1349288 to your computer and use it in GitHub Desktop.
Save tarsisazevedo/1349288 to your computer and use it in GitHub Desktop.
javascript prototype
function Objeto() {
this.atributo1 = 1;
this.atributo2 = 2;
}
Objeto.prototype.metodo1 = function() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment