JavaScript 中的 Math.log10() 函数
Math 对象的 log10() 函数接收一个数字,并返回给定数字的自然对数(底数为 10)。
语法
它的语法如下
Math.log10(48);
示例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.log10(48); document.write("Result: "+result); </script> </body> </html>
输出
Result: 1.6812412373755872
广告