Hàm toFixed () của đối tượng Number chấp nhận một số đại diện cho số điểm sẽ được hiển thị sau số thập phân và hiển thị số hiện tại tương ứng.
Cú pháp
Cú pháp của nó như sau
num.toFixed(num);
Ví dụ
<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>
Đầu ra
Fixed point notation of the given number is: 3.1416
Ví dụ
<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>
Đầu ra
Fixed point notation of the given number is: 3.1416 Fixed point notation of the given number is: 2130000000000000.0000