JSFiddle - React, Tailwind, and code Playground

by ric47121

JavaScript

var Amigo = function(){
    this.nombre = '';

    this.saludar = function(){
        console.log('hola');            
    }       
}

        var retornaObjeto = function(Obj){
            return new Obj();              
        }
        
    var alguien = retornaObjeto(Amigo);

alguien.saludar();