“ciąg do JS” Kod odpowiedzi

ciąg do kodu JavaScript

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

var F=new Function (theInstructions);

return(F());
Different Deer

ciąg do 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

Konwertuj ciąg na numer w 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

ciąg do kodu JavaScript

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

Odpowiedzi podobne do “ciąg do JS”

Pytania podobne do “ciąg do JS”

Więcej pokrewnych odpowiedzi na “ciąg do JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu