Answers for "javascript round to upper value in two decimal"

11

js round up decimal

Math.round(3.14159)  // 3
Math.round(3.5)      // 4
Math.floor(3.8)      // 3
Math.ceil(3.2)       // 4
Posted by: Guest on November-26-2020
11

js how to round up 2 decimal places

Math.round((num + Number.EPSILON) * 100) / 100
Posted by: Guest on April-02-2020

Code answers related to "javascript round to upper value in two decimal"

Code answers related to "Javascript"

Browse Popular Code Answers by Language