Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

Number.toExponential() คืออะไรใน JavaScript


เมธอดนี้ส่งคืนสตริงที่แสดงวัตถุตัวเลขในรูปแบบเลขชี้กำลัง ต่อไปนี้เป็นไวยากรณ์:

number.toExponential( [fractionDigits] )

พารามิเตอร์ FractionDigits เป็นจำนวนเต็มที่ระบุจำนวนหลักหลังจุดทศนิยม

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีทำงานกับเมธอด Number.toExponential() ใน JavaScript

<html>
   <head>
      <title>JavaScript Method toExponential()</title>
   </head>

   <body>
      <script>
         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>