JSFiddle - React, Tailwind, and code Playground
by masmiguel
JavaScript
function hola(){ alert("hola");}
function ejecuta(nombrefuncion){
if (nombrefuncion != null )
eval(nombrefuncion)();
else alert("en el else");
}
var fun = null;
ejecuta(fun);
by masmiguel
function hola(){ alert("hola");}
function ejecuta(nombrefuncion){
if (nombrefuncion != null )
eval(nombrefuncion)();
else alert("en el else");
}
var fun = null;
ejecuta(fun);