热门标签
更多>
搜索结果
查询Tags标签: getBaseLog,共有 2条记录-
微信小程序:求对数
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: 4js这个坑货,在Math里多封装一步能死吗,还得自…
2021/11/6 22:13:01 人评论 次浏览 -
微信小程序:求对数
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: 4js这个坑货,在Math里多封装一步能死吗,还得自…
2021/11/6 22:13:01 人评论 次浏览