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

JavaScriptのMath.expm1()関数


Mathオブジェクトのこの関数は、e x の値を返します。 – 1、ここでxとeは自然アルゴリズムの底と指数です。

構文

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

Math.expm1(6);

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

出力

Result: 402.4287934927351

  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"