“JS execute string” Respostas de código

JavaScript Execute String Código

var theInstructions = "alert('Hello World'); var x = 100";

var F=new Function (theInstructions);

return(F());
Misty Markhor

JS execute string

var myString = "console.log('I am Batman')";
eval(myString);
//carefull ! This will execute the code, therefore 
//be careful of where/how you got this string. 
Dark Horse

Respostas semelhantes a “JS execute string”

Perguntas semelhantes a “JS execute string”

Mais respostas relacionadas para “JS execute string” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código