Answers for "javascript round .5 down"

2

javascript round down

Math.floor(x);
Posted by: Guest on December-15-2019
1

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
0

javascript round .5 down

//standard round function, except round .5 down instead of up
function roundHalfDown(num) {
  return -Math.round(-num);
}
roundHalfDown(1.5);// 1
roundHalfDown(1.6);// 2
Posted by: Guest on April-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language