Math.log10()

基线 广泛可用

此功能已得到很好的建立,并在许多设备和浏览器版本上运行。它自 2015 年 7 月.

报告反馈

Math.log10() 静态方法返回数字的以 10 为底的对数。也就是说 > 0 , x ( 𝙼𝚊𝚝𝚑.𝚕𝚘𝚐𝟷𝟶 ) = 𝚡 10 ( ) = log the unique  y 10 the unique  =  such that 

试一试

语法

\forall x > 0,\;\mathtt{\operatorname{Math.log10}(x)} = \log_{10}(x) = \text{the unique } y \text{ such that } 10^y = x
Math.log10(x)

js

参数

大于或等于 0 的数字。

返回值

描述

x 的以 10 为底的对数。如果 x < 0,则返回 NaN.

因为 log10()Math 的静态方法,所以您始终将其用作 Math.log10(),而不是用作您创建的 Math 对象的方法 (Math 不是构造函数)。

示例

此函数等效于 Math.log(x) / Math.log(10)。对于 log10(e),使用常量 Math.LOG10E,它等于 1 / Math.LN10.

\forall x > 0,\;\mathtt{\operatorname{Math.log10}(x)} = \log_{10}(x) = \text{the unique } y \text{ such that } 10^y = x
Math.log10(-2); // NaN
Math.log10(-0); // -Infinity
Math.log10(0); // -Infinity
Math.log10(1); // 0
Math.log10(2); // 0.3010299956639812
Math.log10(100000); // 5
Math.log10(Infinity); // Infinity

规范

使用 Math.log10()
规范
# ECMAScript 语言规范

浏览器兼容性

sec-math.log10

另请参阅