¹ØÀ» ÁöÁ¤ÇÑ Áö¼ö¸¸Å °ÅµìÁ¦°öÇÑ °ªÀ» ¹ÝȯÇÑ´Ù.
ÀμöµéÀº ÇÊ¿äÇÑ ¼öÄ¡, ¼öÄ¡°³Ã¼³ª ¼ö½ÄÀÌ µÉ ¼ö ÀÖ´Ù.
¹Ýȯ°ª fpVal´Â ±âÃʼöÀÇ ½Â¼ö baseexponent (±âÃʼöÄ¡½Â¼ö) °ªÀ» ¹ÝȯÇÑ´Ù.
Àμö°¡ Á¦°øµÇÁö ¾Ê°Å³ª, ÇÑ°³¸¸ Á¦°øµÈ °æ¿ì³ª Àμö Áß¿¡ ÇÑ°³¶óµµ À¯È¿¼öÄ¡°¡ ¾Æ´Ï¸é ¹Ýȯ°ªÀº NaNÀÌ´Ù.
document.write(Math.pow(10,3));
±âÃʼöÄ¡(10)½Â¼ö(3)¿¡ ÇØ´çÇÏ´Â ¼ö½Ä 103À¸·Î 1000À» ¹ÝȯÇÑ´Ù.
<SCRIPT> var br='<BR>'; // ÁÙ¹Ù²Þ var str=''; // Ãâ·Â ¹®ÀÚ¿ º¯¼ö ¼±¾ð str+='Math.pow(10,2)='+Math.pow(10,2)+br; // 102 str+='Math.pow("0.2",3)='+Math.pow("0.2",3)+br; // 0.23 str+='Math.pow(-10,3)='+Math.pow(-10,3)+br; // -103 str+='Math.pow(10000,(1/2))='+Math.pow(10000,(1/2))+br; // 10000(1/2) str+='Math.sqrt(10000)='+Math.sqrt(10000)+br; // 10000ÀÇ Á¦°ö±Ù = 10000(1/2) str+='Math.pow(100000,(1/5))='+Math.pow(100000,(1/5))+br; // 10000(1/5) str+='Math.pow(Math.sqrt(100),2)='+Math.pow(Math.sqrt(100),2)+br; // (100(1/2))2 = 100ÀÇ Á¦°ö±ÙÀÇ Á¦°ö str+='Math.pow("1,000",3)='+Math.pow("1,000",3)+br; // °Ë¸¶°¡ ÀÖ¾î À¯È¿¼öÄ¡°¡ ¾Æ´Ï¹Ç·Î NaN str+='Math.pow(1000,1000)='+Math.pow(1000,1000); // À¯µ¿¼Ò¼öÁ¡À¸·Î Ç¥ÇöÇÒ ¼ö ¾ø´Â Å« ¼ö·Î Infinity(¹«ÇÑ´ë: ±×·¯³ª À¯È¿¼öÄ¡ÀÌ´Ù.) str+='Math.pow("1,000",2)='+Math.pow("1,000",2); // ±âÃʼö Àμö "1,000"ÀÌ À¯È¿¼öÄ¡°¡ ¾Æ´Ï¹Ç·Î ¹Ýȯ°ªÀº NaN document.write(str); // °á°ú ¹®ÀÚ¿ Ãâ·Â </SCRIPT>