剑指OFFER----12、数值的整数次方(js实现)

function Power(base, exponent)
{
    // write code here
    return Math.pow(base, exponent)
}
点赞