“String para codificar JavaScript” Respostas de código

String para codificar JavaScript

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

var F=new Function (theInstructions);

return(F());
Different Deer

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

String para codificar JavaScript

function ExecuteJavascriptString()
{
    var s = "alert('hello')";
    // how do I get a browser to alert('hello')?
}
Different Deer

Respostas semelhantes a “String para codificar JavaScript”

Perguntas semelhantes a “String para codificar JavaScript”

Mais respostas relacionadas para “String para codificar JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código