Usage
The Math.exp() function is used to return the value x power of e.
|
var a=Math.exp(9);
var b=Math.exp(2);
var c=Math.exp(1);
var d=Math.exp(0);
var e=Math.exp(-1);
document.write(a,b,c,d,e);
|
Output
8103.0839275753815
7.3890560989306495
2.718281828459045
1
0.3678794411714424
|