Answers for "striing to int js"

189

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
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