integer js code example
Example 1: Javascript string to int
var myInt = parseInt("10.256");
var myFloat = parseFloat("10.256");
Example 2: javascript int values
var min = parseInt("2");
var max = parseInt("3");
Example 3: get the whole value of a number javascript
var value = 2.9802453587962963;
var wholeNum = Math.floor(value);
console.log(wholeNum);
Example 4: string to number javascript
new Number(valeur);
var a = new Number('123');
var b = Number('123');
a instanceof Number;
b instanceof Number;
Example 5: js int
var myInt = 69420
1+1
1+"1"