Math ceil() JavaScript

Learn via video course
FREE
View all courses
JavaScript Course With Certification: Unlocking the Power of JavaScript
JavaScript Course With Certification: Unlocking the Power of JavaScript
by Mrinal Bhattacharya
1000
4.8
Start Learning
JavaScript Course With Certification: Unlocking the Power of JavaScript
JavaScript Course With Certification: Unlocking the Power of JavaScript
by Mrinal Bhattacharya
1000
4.8
Start Learning
Topics Covered

Overview

The Math.ceil() function in JavaScript uses the upward rounding method, which accepts a single input, the number to be rounded to the nearest integer.

Syntax of Math ceil() in javascript

The following is the syntax of ceil in javascript:

Parameters of Math ceil() in javascript

Math ceil in JavaScript accepts only a single parameter:

  • value: it is the value to be rounded by the upward rounding method.

Return type of Math ceil() in javascript

Return type: int

Math ceil in JavaScript returns the number that has been rounded by the upward rounding method or we can say that it returns the smallest integer greater than or equal to the given number.

Exceptions Of Math ceil() In Javascript

  • A non-numeric string passed as parameter returns NaN.
  • An array with more than 1 integer passed as parameter returns NaN.
  • An empty variable passed as parameter returns NaN.
  • An empty string passed as parameter returns NaN.
  • An empty array passed as parameter returns NaN.

Example Of Math ceil() In Javascript

Output :

What Is Math ceil() In Javascript?

The ceil() is a JavaScript function that returns the lowest integer value that is greater than or equal to a given number. In other words, the ceil() method produces an integer value after rounding up a number. Because the ceil() function is a static function of the Math object, it must be called using the Math placeholder object.

More Examples

Using Math.ceil() for practical example

Output :

Explanation: As previously explained, math ceil in JavaScript will convert the integer by the upward rounding method and return that converted value.

Decimal adjustment

Output:

The above code is an example of decimal adjustment in javascript.

Browser compatibility

The Math.ceil() method in javascript is supported by all the browsers such as Chrome, Edge, Safari, Opera etc.

Conclusion

  • The Math ceil in JavaScript returns an integer in which the integer is rounded by the upward rounding method.
  • As the ceil() function is a static function of the Math object, it must be called using the Math placeholder object.

See Also