Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

round js

// 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...
Source by www.codegrepper.com #
 
PREVIOUS NEXT
Tagged: #js
ADD COMMENT
Topic
Name
9+2 =