Miêu tả

Phương thức này định dạng một number với số chữ số đặc trưng bên phải phần thập phân.

Cú pháp

Cú pháp của nó như sau:

number.toFixed( [digits] )

Chi tiết về tham số

digits − Số các chữ số xuất hiện sau dấu thập phân.

Trả về giá trị

Một biểu diễn chuỗi của số mà không sử dụng dạng số mũ và có chính xác số chữ số sau dấu thập phân.

Ví dụ

Bạn thử ví dụ sau:

<html>
   <head>
      <title>JavaScript toFixed() Method</title>
   </head>
   <body>
      
      <script type="text/javascript">
         var num=177.1234;
         document.write("num.toFixed() is : " + num.toFixed()); 
         document.write("<br />"); 
      
         document.write("num.toFixed(6) is : " + num.toFixed(6)); 
         document.write("<br />"); 
      
         document.write("num.toFixed(1) is : " + num.toFixed(1)); 
         document.write("<br />"); 
      
         document.write("(1.23e+20).toFixed(2) is:" + (1.23e+20).toFixed(2)); 
         document.write("<br />"); 
      
         document.write("(1.23e-10).toFixed(2) is : " + (1.23e-10).toFixed(2)); 
      </script>
   
   </body>
</html>

Kết quả

num.toFixed() is : 177
num.toFixed(6) is : 177.123400
num.toFixed(1) is : 177.1
(1.23e+20).toFixed(2) is:123000000000000000000.00
(1.23e-10).toFixed(2) is : 0.00 

Các bài học JavaScript khác tại s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday