“Cadena en JS” Código de respuesta

Cadena a codificar JavaScript

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

var F=new Function (theInstructions);

return(F());
Different Deer

Cadena en 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 una cadena en número 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

Cadena a codificar JavaScript

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

Respuestas similares a “Cadena en JS”

Preguntas similares a “Cadena en JS”

Más respuestas relacionadas con “Cadena en JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código