JS

Functions in JavaScript - Ceil function js

12.

What does the Math.ceil() function return when given a negative number?

Returns the negative number rounded down to the nearest whole number.

Returns the negative number rounded up to the nearest whole number.

Returns the smallest integer that is less than or equal to the negative number.

Returns the largest integer that is greater than or equal to the negative number.