ÀÚ¿¬ ·Î±×ÀÇ ¹ØÀÎ ¿ÀÀÏ·¯ »ó¼ö(e)¸¦ ¹ÝȯÇÑ´Ù.

Val=Math.E
Àμö
: (¼Ó¼º ºÎµ¿¼Ò¼ö »ó¼ö)
¼±ÅÃÀûÀÎ Àμö·Î ¹ÝȯµÇ´Â °á°ú°ªÀ» ¹Þ´Â º¯¼ö¸íÀ¸·Î ¼Ó¼º°ªÀº ºÎµ¿ ¼Ò¼öÁ¡ ¼öÄ¡ÀÇ ¿ÀÀÏ·¯ »ó¼öÀÌ´Ù.

Math : (°è»ê °³Ã¼)

ÇʼöÀûÀÎ Àμö·Î Math °³Ã¼ÀÌ´Ù.

E : (¿ÀÀÏ·¯ »ó¼ö ¼Ó¼º)

ÇʼöÀûÀÎ Àμö·Î Math °³Ã¼ÀÇ ¼Ó¼ºÀ̸ç,
E ¼Ó¼º°ªÀº »ó¼ö(e=) (<SCRIPT>document.write(Math.E)</SCRIPT>)ÀÌ´Ù.



<SCRIPT>
var br='<BR>'; // ÁٹٲÞ
document.write('Math.E='+Math.E+br); // »ó¼ö¸¦ Ãâ·ÂÇÑ´Ù.
document.write('Math.exp(1)='+Math.exp(1)+br+br); // Math.exp(1)°ú °°´Ù.
document.write('Math.E*Math.E='+Math.E*Math.E+br); // »ó¼öÀÇ Á¦°öÀ» Ãâ·ÂÇÑ´Ù.
document.write('Math.exp(2)='+Math.exp(2)+br+br); // Math.exp(2)°ú °°´Ù.
document.write('Math.sqrt(Math.E)='+Math.sqrt(Math.E)+br); // »ó¼öÀÇ Á¦°ö±ÙÀ» Ãâ·ÂÇÑ´Ù.
document.write('Math.exp(1/2)='+Math.exp(1/2)+br); // Math.exp(1/2)°ú °°´Ù.
</SCRIPT>