Miêu tả

Phương thức này trả về một chuỗi biểu diễn đối tượng Number trong dạng số mũ.

Cú pháp

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

number.toExponential( [fractionDigits] )

Chi tiết về tham số

fractionDigits − Một integer xác định số chữ số sau dấu chấm thập phân. Mặc định là số chữ số cần thiết để xác định số đó.

Trả về giá trị

Một chuỗi biểu diễn một đối tượng Number trong dạng số mũ với một chữ số trước dấu thập phân, được làm tròn tới các chữ số fractionDigits sau dấu thập phân. Nếu tham số fractionDigits bị bỏ qua, số chữ số sau dấu thập phân mặc định là số chữ số cần thiết để biểu diễn giá trị duy nhất.

Ví dụ

Bạn thử ví dụ sau:

<html>
   <head>
      <title>Javascript Method toExponential()</title>
   </head>
   
   <body>
      <script type="text/javascript">
         var num=77.1234;
         var val = num.toExponential(); 
         document.write("num.toExponential() is : " + val );
         document.write("<br />"); 
         
         val = num.toExponential(4);
         document.write("num.toExponential(4) is : " + val );
         document.write("<br />"); 
         
         val = num.toExponential(2); 
         document.write("num.toExponential(2) is : " + val); 
         document.write("<br />"); 
         
         val = 77.1234.toExponential(); 
         document.write("77.1234.toExponential()is : " + val ); 
         document.write("<br />"); 
         
         val = 77.1234.toExponential(); 
         document.write("77 .toExponential() is : " + val); 
      </script>
   
   </body>
</html>

Kết quả

num.toExponential() is : 7.71234e+1
num.toExponential(4) is : 7.7123e+1
num.toExponential(2) is : 7.71e+1
77.1234.toExponential()is:7.71234e+1
77 .toExponential() is : 7.71234e+1

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