Math.floor()

The Math.floor() method is the floor function. Math.floor() rounds numbers down to the nearest integer value.

 
<!DOCTYPE html>
<html>
<head>
    <title>Example</title>
    <script type="text/javascript">
        document.writeln(Math.floor(25.9)); //25 
        document.writeln(Math.floor(25.5)); //25 
        document.writeln(Math.floor(25.1)); //25 

    </script>
</head>
<body>
</body>
</html>
  
Click to view the demo
Home 
  JavaScript Book 
    Essential Types  

Math:
  1. The Math Object
  2. Math min() and max() Methods
  3. Math.ceil()
  4. Math.floor()
  5. Math.round()
  6. random() Method