Answers for "how to convert to string to int in javascript"

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
0

javascript how to convert string to number

Number.parseInt("24", 10);
Posted by: Guest on August-17-2021

Code answers related to "how to convert to string to int in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language