Skip to content

Instantly share code, notes, and snippets.

@tarsisazevedo
Created November 8, 2011 21:29
Show Gist options
  • Save tarsisazevedo/1349311 to your computer and use it in GitHub Desktop.
Save tarsisazevedo/1349311 to your computer and use it in GitHub Desktop.
herança javascript
function ObjetoFilho() {
Objeto.call(this);
}
ObjetoFilho.prototype = new Objeto();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment