convert Number to integer javascript code example

Example 1: Javascript string to int

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

Example 2: javascript convert string to number or integer

//It accepts two arguments. 
//The first argument is the string to convert. 
//The second argument is called the radix. This is the base number used in mathematical systems. For our use, it should always be 10.


var text = '42px';
var integer = parseInt(text, 10);


// returns 42

Example 3: string to number js

let myNumber = Number("5.25"); //5.25

Example 4: string to int javascript

var text = '3.14someRandomStuff';
var pointNum = parseFloat(text);
// returns 3.14

Example 5: get the whole value of a number javascript

var value = 2.9802453587962963;
var wholeNum = Math.floor(value);
console.log(wholeNum);  // output ==> 2

Example 6: js int

var myInt = 69420

1+1//int
1+"1"//string