javascript number with no decimal code example
Example 1: javascript snumber two decimal places as string
let money = 1.6;
money.toFixed(2); // 1.60
Example 2: remove decimals javascript
Math.floor(5.9) //5
Math.ceil(5.1) //6
Math.round(9.5) //10
5.3 >> 0 //5 (same as Math.floor)
7.9 >> 0 //7 (same as Math.floor)