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

JavaScriptのMath.exp()関数


Mathオブジェクトのこの関数は、数値を受け取り、Exの値を返します。ここで、xとEは引数であり、オイラーの自然対数の定数です。

構文

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

Math.exp(12)

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.exp(12);
      document.write("Result: "+result);
   </script>
</body>
</html>

出力

Result: 162754.79141900392

  1. JavaScriptのMath.cosh()関数

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

  2. JavaScriptのparseFloat()関数

    parseFloat()関数は、2つのパラメーターを受け入れます。1つは数値を表す文字列で、もう1つは基数を表す数値であり、指定された基数の整数を返します。 構文 その構文は次のとおりです num.parseFloat('4524', 8); 例 <html> <head>    <title>JavaScript Example</title> </head> <body>    <script type="text/javascript"