1//There are meny ways of rounding...
2Math.floor(5.5) //Answer 5, it alwas rounds down.
3Math.round(5.5) //Answer 6, it simpily rounds to the closest whole number.
4Math.ceil(5.5) //Answer 6, it alwas rounds up.
5
6//You can do more things too...
7Math.floor(5.57 * 10) / 10 //Answer 5.5, the number turns into 55.7, Then gets floored (55.0), Then gets divied, (5.5).
1Math.round(3.14159 * 100) / 100 // 3.14
2
33.14159.toFixed(2); // 3.14 returns a string
4parseFloat(3.14159.toFixed(2)); // 3.14 returns a number
5