2021年11月6日
摘要: 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 阅读全文
posted @ 2021-11-06 19:44 Jason_c 阅读(312) 评论(0) 推荐(0) 编辑