Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

remove floating point javascript

Math.floor(5.9) // 5 rounds down
Math.ceil(5.1) // 6 rounds up
Math.round(5.5) // 6 round to nearest integer
Math.trunc(5.1) // 5 removes fractional part
 
PREVIOUS NEXT
Tagged: #remove #floating #point #javascript
ADD COMMENT
Topic
Name
4+2 =