Answers for "convertir from string to number"

6

string to int javascript

var text = '3.14someRandomStuff';
var pointNum = parseFloat(text);
// returns 3.14
Posted by: Guest on June-15-2020
0

convert a string to number in 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])
Posted by: Guest on July-25-2020

Code answers related to "convertir from string to number"

Code answers related to "Javascript"

Browse Popular Code Answers by Language