how to limit numbers to two decima places in javascript code example
Example 1: javascript round to 2 digits
var num = 2;
var roundedString = num.toFixed(2);// 2.00
Example 2: round number 2 decimals javascript
Math.round((num + Number.EPSILON) * 100) / 100