Computer Science, asked by cherryagarwal9722, 1 year ago

a method in the javascript math library that returns the smallest integer greater than or equal to a decimal number.

Answers

Answered by Anonymous
2

Hi

A method in the javascript math library that returns the smallest integer greater than or equal to a decimal number is min method

Math.min() will return the smallest number from given serious of number


example Math.min(-1, 2, 0, 5);

will return -1


Similar questions