Answers for "js convert text to int"

132

how to convert string to int js

let string = "1";
let num = parseInt(string);
//num will equal 1 as a int
Posted by: Guest on February-24-2020
11

javascript convert string to number

var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Posted by: Guest on March-12-2020
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 "Javascript"

Browse Popular Code Answers by Language