JavaScript exp() Method
Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
JavaScript exp() Method
❮ JavaScript Math Object
Example
Return Ex, where x is 1
Math.exp(1);
<!--
The result will be:
2.718281828459045
-->Try it Yourself »
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 |
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
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);
<!--
The result of a,b, and c will be:
0.36787944117144233
148.4131591025766
22026.465794806718
-->Try it Yourself »
❮ JavaScript Math Object