JavaScript Math.expm1()
示例
let x = Math.expm1(3);
自己尝试 »
let a = Math.exp(1);
let b = Math.exp(-1);
let c = Math.exp(5);
let d = Math.exp(10);
自己尝试 »
描述
The expm1()
method returns the value of Ex minus 1, where E is Euler's number (approximately 2.7183) and x is the number passed to it.
此方法比使用 Math.exp() 并减去 1 更准确。
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.expm1(x)
参数
参数 | 描述 |
x | 必需。 一个数字。 |
返回值
类型 | 描述 |
数字 | Ex 减 1 |
浏览器支持
Math.expm1()
是 ECMAScript6 (ES6) 功能。
ES6 (JavaScript 2015) 自 2017 年 6 月起在所有现代浏览器中得到支持
Chrome 51 | Edge 15 | Firefox 54 | Safari 10 | Opera 38 |
2016 年 5 月 | 2017 年 4 月 | 2017 年 6 月 | 2016 年 9 月 | 2016 年 6 月 |
Math.expm1()
在 Internet Explorer 中不支持。