Hacker News new | ask | show | jobs
by 4Data 3937 days ago
Hmm, pretty sure floor rounds a number downward to its nearest integer. So Math.floor(-15.5) would be 15.

https://developer.mozilla.org/pt-PT/docs/Web/JavaScript/Refe...

2 comments

Literally the first example on that page:

> Math.floor( 45.95); // 45

> Math.floor(-45.95); // -46

Its not like its hidden or anything... Its in the center of the page on my 1920x1080 screen.

Nope. Math.floor(-15.5) would be -16. It rounds a number downwards. -16 < -15.