JavaScript log10() 方法
JavaScript基础 2022-06-08 11:00:20小码哥的IT人生shichen
JavaScript log10() 方法
实例
返回数字 "2" 的以 10 为底的对数:
Math.log10(2);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可显示数字 "2" 的以 10 为底的对数。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = Math.log10(2);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 TIY 实例。
定义和用法
log10()
方法返回数的以 10 为底的对数。
浏览器支持
方法 | Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
log10() | 38.0 | 12.0 | 25.0 | 8.0 | 25.0 |
语法
Math.log10(x)
参数值
参数 | 描述 |
---|---|
x | 必需。数字。 |
技术细节
返回值: |
数值,表示数的以 10 为底的对数
|
---|---|
JavaScript 版本: | ECMAScript 2015 |
更多实例
对不同的数字使用 log10() 方法:
var a = Math.log10(2.7183);
var b = Math.log10(2);
var c = Math.log10(1);
var d = Math.log10(0);
var e = Math.log10(-1);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可显示不同数字的以 10 为底的对数。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var a = Math.log10(2.7183);
var b = Math.log10(2);
var c = Math.log10(1);
var d = Math.log10(0);
var e = Math.log10(-1);
var x = a + "<br>" + b + "<br>" + c + "<br>" + d + "<br>" + e;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html