JavaScript Math.exp() Method
You are Here:
JavaScript Math.exp() Method
The Math.exp()
method returns the value of Ex
Note: E is Euler's number (approximately 2.7183) and x is the number passed to it.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var result = Math.exp(2);
document.write(result);
</script>
</body>
</html>
Syntax
Math.exp(x)
Parameter Values
Value | Type | Explanation |
---|---|---|
x | Required | Specifies a number. |
Return Value
Value | Explanation |
---|---|
Number | Returns a number representing ex. |
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.