<html>
<body>
<h2>JavaScript Math</h2>
<p>Math.exp(x) returns the value of E<sup>x</sup>:</p>
<p id="demo"></p>
<script>
let a = Math.exp(1);
let b = Math.exp(-1);
let c = Math.exp(5);
let d = Math.exp(10);
document.getElementById("demo").innerHTML =
a + "<br>" + b + "<br>" + c + "<br>" + d;
</script>
</body>
</html>