Conversion String To Int Javascript Code Example


Example 1: how to convert string to int js


let string = "1";
let num = parseInt(string);
//num will equal 1 as a int

Example 2: javascript convert string to number


var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy