JSFiddle - React, Tailwind, and code Playground
by ric47121
JavaScript
var Persona =function(){
this.nombre = '';
this.saludar = function(){
console.log('hola');
}
}
Persona.prototype.despedir = function(){ //agrego metodo de forma dinamica
console.log('adios');
}
var pepe = new Persona();
pepe.saludar();
pepe.despedir();