Math.ceil returns the smallest integer greater than or equal to its argument. For -4.7, ceiling gives -4.0 (since -4 is greater than -4.7). Math.floor would give -5.0, Math.round would give -5 (rounds toward positive infinity for negative numbers), and Math.min requires two arguments.