剑指OFFER----12、数值的整数次方(js实现) 2024年6月7日 130次阅读 function Power(base, exponent) { // write code here return Math.pow(base, exponent) } < 上一篇 下一篇 >