JavaScriptのNumber.toFixed()関数
NumberオブジェクトのtoFixed()関数は、小数点以下に表示されるポイントの数を表す数値を受け入れ、それに応じて現在の数値を表示します。
構文
その構文は次のとおりです
num.toFixed(num);
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var num = Math.PI; result = num.toFixed(4); document.write("Fixed point notation of the given number is: " + result); </script> </body> </html>
出力
Fixed point notation of the given number is: 3.1416
例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var num = Math.PI; document.write("Fixed point notation of the given number is: " + num.toFixed(4)); document.write("<br>"); var num = 2.13e+15; document.write("Fixed point notation of the given number is: " + num.toFixed(4)); </script> </body> </html>
出力
Fixed point notation of the given number is: 3.1416 Fixed point notation of the given number is: 2130000000000000.0000
-
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" /> &
-
JavaScriptのNumber.toLocaleString()関数
NumberオブジェクトのtoLocaleString()関数は数値を受け取り、指定された(ローカル)言語での数値の表現を返します。 構文 その構文は次のとおりです num.toLocaleString(num); 例 <html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> &n