// There are many ways of rounding...
Math.ceil(5.5) // Answer 6, rounds up.
Math.round(5.5) // Answer 6, rounds to the closest whole number.
Math.floor(5.5) // Answer 5, rounds down.
// ceil is short for ceiling(up), floor is down...
<?php
echo round(0.8);
echo round(19.11); //returns 20
?>