Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 18, 2018 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/df661c0af13c4702821b355c439b868e to your computer and use it in GitHub Desktop.
Save parzibyte/df661c0af13c4702821b355c439b868e to your computer and use it in GitHub Desktop.
var Mascota = function(nombre, edad){
this.nombre = nombre;
this.edad = edad;
}
// Ahora usamos prototype
Mascota.prototype.ladrar = function(){
console.log("Woof! Me llamo " + this.nombre);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment