JavaScript exp() Method
More "Try it Yourself" examples below.
Definition and Usage
The exp() method returns the value of Ex, where E is Euler's number (approximately 2.7183) and x is the number passed to it.
Browser Support
Method | |||||
---|---|---|---|---|---|
exp() | Yes | Yes | Yes | Yes | Yes |
Syntax
Math.exp(x)
Parameter Values
Parameter | Description |
---|---|
x | Required. A number |
Technical Details
Return Value: | A Number, representing Ex |
---|---|
JavaScript Version: | ECMAScript 1 |
More Examples
Example
Use the exp() method on different numbers:
var a = Math.exp(-1);
var b = Math.exp(5);
var c = Math.exp(10);
Try it Yourself »
❮ JavaScript Math Object