How can I round down a number in Javascript?
Asked 07 September, 2021
Viewed 2.4K times
  • 60
Votes

How can I round down a number in JavaScript?

math.round() doesn't work because it rounds it to the nearest decimal.

I'm not sure if there is a better way of doing it other than breaking it apart at the decimal point at keeping the first bit. There must be...

11 Answer