JavaScript Math floor() Method

Below is the example of the Math floor() Method.

  • Example:
    filter_none

    edit
    close

    play_arrow

    link
    brightness_4
    code

    <script type="text/javascript">
             document.write("Result : " + Math.floor(.89));
    </script>

    chevron_right

    
    

  • Output:
    Result : 0

The Math.floor method is used to round off the number passed as a parameter to its nearest integer in Downward direction of rounding i.e. towards the lesser value.

Syntax:

Math.floor(value)

Parameters: This method accepts single parameter asmentioned above and described below:

  • Value: It is the value which is to be tested for Math.floor.

Return Value: The Math.floor() method returns the smallest integer greater than or equal to the given number.



Below examples illustrate the Mathe floor() method in JavaScript:

  • Example 1:
    Input : Math.floor(.89)
    Output: 0
  • Example 2:
    Input :  Math.floor(-89.02)
    Output : -90
  • Example 3:
    Input : Math.floor(0)
    Output : 0
  • More codes for the above method are as follows:

    Program 1: When a negative number is passed as a parameter.

    filter_none

    edit
    close

    play_arrow

    link
    brightness_4
    code

    <script type="text/javascript">
             document.write("Result : " + Math.floor(-89.02));
    </script>

    chevron_right

    
    

    Output:

    Result : -90

    Program 2: When zero is passed as a parameter.

    filter_none

    edit
    close

    play_arrow

    link
    brightness_4
    code

    <script type="text/javascript">
             document.write("Result : " + Math.floor(0));
    </script>

    chevron_right

    
    

    Output:

    Result : 0

    Supported Browsers:

    • Google Chrome
    • Internet Explorer
    • Firefox
    • Opera
    • Safari

    full-stack-img




    My Personal Notes arrow_drop_up

    Image
    Check out this Author's contributed articles.

    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.