サイト内検索

Math メソッド一覧

スポンサー

ホーム > Math > floor

floor

床関数を計算します.

シンタックス

Math.floor(x)
  • x - 数値

解説

floorメソッドはx以下の最大の整数を返します.

サンプルコード

以下にfloorメソッドを使用したサンプルコードを示します.

<html>
  <head>
    <title>floorメソッドのサンプルコード</title>
  </head>
  <body>
    <script type="text/javascript" language="javascript">
      document.write(Math.floor(1.0001) + "<br />");
      document.write(Math.floor(-1.0001) + "<br />");
      document.write(Math.floor(1.5000) + "<br />");
      document.write(Math.floor(-1.5000) + "<br />");
      document.write(Math.floorfloor(0) + "<br />");
    </script>
  </body>
</html>

実行例

サンプルコードの実行結果は以下のようになります.

1
-2
1
-2
0

関連項目

スポンサード リンク

inserted by FC2 system