I need to round floating point numbers up to the nearest integer, even if the number after the point is less than 0.5.
For example,
Use the Math.ceil[MDN] function
var n = 4.3; alert(Math.ceil(n)); //alerts 5