ES6 Math.LN2

自然对数为10,约为2.302。

语法

Math.LN2

console.log(Math.LN10) // the natural logarithm of 10: ~2.303

输出

2.302585092994046

基数为2的对数,约为1.442。语法Math.LOG2E例console.log(Math.LOG2E) // the base 2 logarithm of Math.E: ~1.433输出1.4426950 ...