C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Math floor() methodThe JavaScript math floor() method decreases the given number up to the closest integer value and returns it. If the given number is already an integer, the floor() method returns it directly. SyntaxThe floor() method is represented by the following syntax: Math.floor(num) Parameternum - A number. ReturnA largest integer value, lower than or equal to the given number. JavaScript Math floor() method exampleHere, we will understand floor() method through various examples. Example 1Let's see an example to decreases the given number up to the closest integer value. <script> document.writeln(Math.floor(7.2)+"<br>"); document.writeln(Math.floor(0.2)); </script> Output: 7 0 Example 2In this example, we will use floor() method with negative numbers. <script> document.writeln(Math.floor(-7.2)+ "<br>"); document.writeln(Math.floor(-0.2)); </script> Output: -8 -1 Example 3Here, you can test floor() method with your own test cases. <script> function display() { var x=document.getElementById("num").value; document.getElementById("result").innerHTML=Math.floor(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
|