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

JavaScriptのMath.trunc()関数


Mathオブジェクトのtrunc()関数は数値を受け取り、その整数点(小数部分を除く)を返します。指定された数値自体が整数の場合、この関数は同じものを返します。

構文

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

Math.trunc();

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.trunc(58.745);
      document.write("Integral part of the given number: "+result);
   </script>
</body>
</html>

出力

Integral part of the given number: 58

  1. JavaScriptのMath.sinh()関数

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

  2. JavaScript数値関数

    JavaScript Number()関数は、引数として渡されたオブジェクト値をそれぞれの数値に変換します。 以下は、JavaScript Number()関数のコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> &