티스토리 뷰

Implement pow(x, n), which calculates x raised to the power n (xn).
Power n (xn)으로 x를 계산하는 pow (x, n)을 구현합니다.

/**
 * @param {number} x
 * @param {number} n
 * @return {number}
 */
var myPow = function(x, n) {
    return Math.pow(x, n).toFixed(5);
};