Math.log(x) Math.hypot( x1,x2.. ) Math.log10(x) 返回X的自然对数。 语法 Math.log(x) 参数 X - 代表一个数字 例 console.log("---Math.log()---") console.log("Math.log(Math.E): "+Math.log(Math.E)) console.log("Math.log(17.5): "+Math.log(17.5)) 输出 ---Math.log()--- Math.log(Math.E): 1 Math.log(17.5): 2.8622008809294686 Math.hypot( x1,x2.. ) Math.log10(x)