Skip to content

Instantly share code, notes, and snippets.

@alejandrolechuga
Last active February 6, 2019 05:27
Show Gist options
  • Save alejandrolechuga/fcb254cce7999c20425b139a31c96acf to your computer and use it in GitHub Desktop.
Save alejandrolechuga/fcb254cce7999c20425b139a31c96acf to your computer and use it in GitHub Desktop.
Prototype
function Doctor() {
}
Doctor.prototype.saludo = function() {
console.log(`Saludos soy el doctor ${this.getName()} y tengo ${this.getAge()} años`);
};
var doctorAlejandro = new Doctor('Alejandro', 33);
doctorAlejandro.saludo(); // 'Saludos soy el doctor Alejandro y tengo 33 años'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment