Answers for "round up math javascript"

2

javascript round to nearest 10

var rounded = Math.round(number / 10) * 10
Posted by: Guest on May-20-2020
2

round down the number javascript

+3.5 => +3.0
-3.5 => -4.0

+3.5 => +3.0 using Math.floor()
-3.5 => -3.0 using Math.ceil()
Posted by: Guest on June-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language