ex 요약 계산 Math.exp(x) 참조 x 지수로 사용되는 숫자 또는 표현식입니다. 반환 값 ex, 즉 e의 x제곱입니다. 여기서 e는 자연 로그의 밑을 나타내며 대략 2.71828입니다. exp() 구문은 다음과 같습니다. 코드 복사 코드는 다음과 같습니다. Math.exp (x) ; Math.exp() 예: 코드 복사 코드 <br><!-- <BR>document.write(Math.exp(2 )); // 출력은 7.38905609893065 <BR>document.write("<br>"); <br>document.write(Math.exp(1)) // 출력은 2.718281828459045 <br>document.write( "<br>"); <br>document.write(Math.exp(-2)); // 출력은 0.1353352832366127 <br>document.write("<br>") <br>document.write (Math.exp(.25) ); // 출력은 1.2840254166877414 <br>document.write("<br>") <br>document.write(Math.exp(-0.46)); 0.631283645506926 <br>//-- > <br>