微信小程序:求对数

function getBaseLog(x, y) {
  return Math.log(y) / Math.log(x);
}

// 2 x 2 x 2 = 8
console.log(getBaseLog(2, 8));
// expected output: 3

// 5 x 5 x 5 x 5 = 625
console.log(getBaseLog(5, 625));
// expected output: 4

  

js这个坑货,在Math里多封装一步能死吗,还得自己写方法

 

文档:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log

 

posted on 2021-11-06 19:44  Jason_c  阅读(279)  评论(0编辑  收藏  举报