“chaîne à JS” Réponses codées

chaîne pour coder javascript

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

var F=new Function (theInstructions);

return(F());
Different Deer

chaîne à JS

// try using parsInt(x)
// you can then use typeof(x) to confirm 
var myString = "555";
var myInt = parseInt(string);
console.log(typeof myInt); // number
CoderHomie

convertir une chaîne en numéro en javascript

var x = parseInt("1000", 10); // you want to use radix 10
    // so you get a decimal number even with a leading 0 and an old browser ([IE8, Firefox 20, Chrome 22 and older][1])
Adorable Anteater

chaîne pour coder javascript

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

Réponses similaires à “chaîne à JS”

Questions similaires à “chaîne à JS”

Plus de réponses similaires à “chaîne à JS” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code