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

JavaScriptのMath.random()関数


Mathオブジェクトのrandom()関数は、0.0から1.0までの浮動小数点乱数を返します。範囲は次のとおりです。0.0=

構文

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

Math.random();

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.random(48, 2);
      document.write("Result "+result);
   </script>
</body>
</html>

出力

Result 0.16413337253303162

  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(