Á¦°ö±Ù °ªÀ» ¹ÝȯÇÑ´Ù.

Àμö/ÆĶó¸ÞÅÍ
number

ÇʼöÀûÀÎ number Àμö´Â ÇÊ¿äÇÑ ¼öÄ¡, ¼öÄ¡°³Ã¼³ª ¼ö½ÄÀÌ µÉ ¼ö ÀÖ´Ù.

¹Ýȯ°ª

¹Ýȯ°ª fpValÀº number ÀμöÀÇ Á¦°ö±Ù°ªÀÌ´Ù.

Àμö°¡ Á¦°øµÇÁö ¾Ê°Å³ª À¯È¿¼öÄ¡°¡ ¾Æ´Ï¸é NaNÀ» ¹ÝȯÇÑ´Ù.

±¸¹® ¿¹Á¦
document.write(Math.sqrt(100));

100ÀÇ Á¦°ö±ÙÀ» ±¸ÇÏ´Â ¼ö½ÄÀ¸·Î °ª 10À» ¹ÝȯÇÑ´Ù.



°£´ÜÇÑ sqrt ¸Þ¼­µå ¿¹Á¦

<SCRIPT>
var br='<BR>'; // ÁٹٲÞ
var str=''; // Ãâ·Â ¹®ÀÚ¿­ º¯¼ö ¼±¾ð
str+='Math.sqrt(10000)='+Math.sqrt(10000)+br; // 10000ÀÇ Á¦°ö±Ù
str+='Math.sqrt("0.0001")='+Math.sqrt("0.0001")+br; // 0.0001ÀÇ Á¦°ö±Ù
str+='Math.sqrt(-100)='+Math.sqrt(-100)+br; // -100ÀÇ Á¦°ö±Ù, °¡´ÉÇÏÁö ¾ÊÀ¸¹Ç·Î NaN
str+='Math.sqrt("10,000")='+Math.sqrt("10,000")+br; // Äĸ¶°¡ ÀÖ¾î À¯È¿¼öÄ¡°¡ ¾Æ´Ï¹Ç·Î NaN
str+='Math.sqrt(Math.pow(10,4))='+Math.sqrt(Math.pow(10,4))+br; // 10¿¡ 4¹ø °Åµì Á¦°ö(104)ÀÇ Á¦°ö±Ù
str+='Math.sqrt())='+Math.sqrt()+br; // Àμö°¡ Á¦°øµÇÁö ¾Ê¾Æ ¹Ýȯ°ªÀº NaN

document.write(str); // °á°ú ¹®ÀÚ¿­ Ãâ·Â
</SCRIPT>