all javascript number methods code example
Example 1: javascript int values
var min = parseInt("2");
var max = parseInt("3");
Example 2: get the whole value of a number javascript
var value = 2.9802453587962963;
var wholeNum = Math.floor(value);
console.log(wholeNum); // output ==> 2