JavaScript | Math.round( ) function
The Math.round() function in JavaScript is used to round a number to its nearest integer. If the fractional part of the number is greater than or equal to .5, the argument is rounded to the next higher integer. If the fractional part of the number is less than .5, the argument is rounded to the next lower integer.
Syntax:
Math.round(var);
Parameters: This function accepts a single parameter, var. It is the number which you want to round off.
Return Value: The Math.round() function returns the value of the given number rounded to the nearest integer.
Below are some examples to illustrate the Math.round() function:
-
Example 1: To round off a number to its nearest integer, the math.round() function should be implemented in the following way:
<scripttype="text/javascript">var round =Math.round(5.8);document.write("Number after rounding : " + round);</script>chevron_rightfilter_noneOutput:
Number after rounding : 6
-
Example 2: The Math.round() function itself rounds off a negative number when passed as parameter to it. To round off a negative number to its nearest integer, the Math.round() function should be implemented in the following way:
<scripttype="text/javascript">var round =Math.round(-5.8);document.write("Number after rounding : " + round);</script>chevron_rightfilter_noneOutput:
Number after rounding : -6
-
Example 3: Below program shows the result of Math.round() function when the parameter has “.5” in decimal.
<scripttype="text/javascript">var round =Math.round(-12.5);document.write("Number after rounding : " + round +"<br>");var round =Math.round(12.51);document.write("Number after rounding : " + round);</script>chevron_rightfilter_noneOutput:
Number after rounding : -12 Number after rounding : 13
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
- How to call a function that return another function in JavaScript ?
- JavaScript | toPrecision( ) Function
- JavaScript | Array every() function
- JavaScript | Symbol.for() function
- JavaScript | Math.abs( ) function
- JavaScript | String() Function
- JavaScript | toFixed( ) Function
- JavaScript | Function Definitions
- JavaScript | toString( ) function
- JavaScript | Function Invocation
- JavaScript | Array some() function
- JavaScript | Math.E() function
- JavaScript | Array.of() function
- JavaScript | Function Parameters
- JavaScript | Function Apply
Supported Browsers: The browsers supported by JavaScript Math.round( ) function are listed below:
Recommended Posts:
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



