Answers for "how to convert the text into number using js"

148

javascript convert string to number

var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Posted by: Guest on July-23-2019
0

convert from string to number javascript

var num1 = 42;
var num2 = '42';
if (num1 == num2) {
    console.log(true);
} else {
    console.log(false);
}
// Will log `false`
Posted by: Guest on October-12-2021

Code answers related to "how to convert the text into number using js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language