C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Math round() methodThe JavaScript math round() method rounds up the given number up to the closest integer value and returns it. If the given number is already an integer, the round() method returns it directly. SyntaxThe round() method is represented by the following syntax: Math.round(num) Parameternum - A number. ReturnThe closest integer value of the given number. JavaScript Math round() method exampleHere, we will understand round() method through various examples. Example 1Let's see an example to increases the given number up to the closest integer value. <script> document.writeln(Math.round(7.2)+"<br>"); document.writeln(Math.round(0.6)); </script> Output: 7 1 Example 2In this example, we will use round() method with negative numbers. <script> document.writeln(Math.round(-7.2)+ "<br>"); document.writeln(Math.round(-0.6)); </script> Output: -7 -1 Example 3Here, you can test round() method with your own test cases. <script> function display() { var x=document.getElementById("num").value; document.getElementById("result").innerHTML=Math.round(x); } </script> <form> Enter a number: <input type="text" id="num"> <input type="button" onclick="display()" value="submit"> </form> <p><span id="result"></span></p>
Next TopicJavaScript Math
|