- Home
- /
- Tutorials
- /
- JavaScript Tutorial
- /
- JavaScript Math Rounding
JavaScript Numbers & Math
JavaScript Math Rounding
round,floor,ceilandtruncturn a decimal into a whole number in different ways.
The differences only become obvious with negative numbers.
That is where most rounding bugs come from.
Example
Example
javascript
console.log(Math.round(4.5));
console.log(Math.floor(4.9));
console.log(Math.ceil(4.1));
console.log(Math.trunc(4.9));