Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

JavaScriptのMath.floor()関数


Mathオブジェクトのfloor()関数は浮動小数点数を受け入れ、指定された数以下の最大の整数を返します。指定された数値自体が整数の場合、この関数は同じものを返します。

構文

その構文は次のとおりです

Math.floor(160)

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.floor(160.98);
      document.write("Floor value: "+result);
   </script>
</body>
</html>

出力

Floor value: 160

  1. JavaScriptのMath.sin()関数

    Mathオブジェクトのsin()関数は、角度(ラジアン)を受け入れ、その正弦値を返します。 構文 その構文は次のとおりです Math.sin(90) 例 <html> <head>    <title>JavaScript Example</title> </head> <body>    <script type="text/javascript">       var result = Math.sin(90); &

  2. JavaScriptのMath.cosh()関数

    Mathオブジェクトのcosh()関数は、角度(ラジアン)を受け入れ、その双曲線正弦値を返します。 構文 その構文は次のとおりです Math.cosh(90) 例 <html> <head>    <title>JavaScript Example</title> </head> <body>    <script type="text/javascript">       var result = Math.cosh(