Math ceil() JavaScript

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.
Transform Your Career
Choose from our industry-leading programs designed for career success
Modern Software and AI Engineering Program
Master full-stack development with AI integration
+1000 moreModern Data Science and ML with specialisation in AI
Advanced data science techniques with AI specialization
+1000 moreAdvanced AIML with Specialisation in Agentic AI
Deep dive into AIML with focus on Agentic systems
+1000 moreDevOps, Cloud & AI Platform Engineering
Build and manage AI-powered cloud infrastructure
+1000 moreAI Engineering Advanced Certification by IIT-Roorkee
Premier AI engineering certification from IIT-Roorkee
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.
Scaler Placement Report and Statistics
Scaler learners achieved 2.5x salary growth with average post-Scaler CTC reaching ₹23L.
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.
Turn Learning into Career Growth
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.
Scaler Placement Report and Statistics
Scaler learners achieved 2.5x salary growth with average post-Scaler CTC reaching ₹23L.
See Also
- charAt in JavaScript
- tolowercase in JavaScript
- parseInt.upper() in Javascript