ÀÚ¿¬ ·Î±×ÀÇ ¹ØÀÎ ¿ÀÀÏ·¯ »ó¼ö(e)¸¦ ¹ÝȯÇÑ´Ù.
Val=Math.E
ÇʼöÀûÀÎ Àμö·Î Math °³Ã¼ÀÌ´Ù.
ÇʼöÀûÀÎ Àμö·Î 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>