control decimal number in js code example
Example 1: js number 2 decimal places
(3.141596).toFixed(2); // 3.14
Example 2: get decimals from float javascript
js> 2.3 % 1
0.2999999999999998
(3.141596).toFixed(2); // 3.14
js> 2.3 % 1
0.2999999999999998