Answers for "parse a string to a number + javascript"

148

string to number js

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 "parse a string to a number + javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language