JavaScript Math.log2()
示例
let a = Math.log2(2.7183);
let b = Math.log2(2);
let c = Math.log2(1);
let d = Math.log2(0);
let e = Math.log2(-1);
尝试一下 »
描述
The Mat.log2()
方法返回一个数字的以 2 为底的对数。
JavaScript 对数函数
The Math.log() 方法The Math.log2() 方法
The Math.log10() 方法
The Math.log1p() 方法
对数性质
The Math.LN2 属性The Math.LN10 属性
The Math.LOG2E 属性
The Math.LOG10E 属性
指数函数
The Math.E 属性 (欧拉数)The Math.exp() 方法
The Math.expm1() 方法
语法
Math.log2(x)
参数
参数 | 描述 |
x | 必需。 一个数字。 |
返回值
类型 | 描述 |
数字 | 数字的以 2 为底的对数。NaN 如果数字小于 -1。-Infinity 如果数字为 -1。 |
浏览器支持
Math.log2()
是 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.log2()
不支持 Internet Explorer。