JavaScript Math.exp()
示例
let x = Math.exp(3);
自己尝试 »
let a = Math.exp(1);
let b = Math.exp(-1);
let c = Math.exp(5);
let d = Math.exp(10);
自己尝试 »
描述
The Math.exp()
method returns the value of Ex, where E is Euler's number (approximately 2.7183) and x is the number passed to it.
JavaScript 对数函数
The Math.log() MethodThe Math.log2() Method
The Math.log10() Method
The Math.log1p() Method
对数性质
The Math.LN2 PropertyThe Math.LN10 Property
The Math.LOG2E Property
The Math.LOG10E Property
指数函数
The Math.E Property (欧拉数)The Math.exp() Method
The Math.expm1() Method
语法
Math.exp(x)
参数
参数 | 描述 |
x | 必需的。 一个数字。 |
返回值
类型 | 描述 |
数字 | Ex |
浏览器支持
Math.exp()
is an ECMAScript1 (ES1) feature.
ES1 (JavaScript 1997) is fully supported in all browsers
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |