숫자의 n번째 근을 계산하여 반환하는 JavaScript 함수를 작성해야 합니다.
예시
이에 대한 코드는 -
const findNthRoot = (m, n) => {
try {
let negate = n % 2 == 1 && m < 0;
if(negate)
m = −m;
let possible = Math.pow(m, 1 / n);
n = Math.pow(possible, n);
if(Math.abs(m − n) < 1 && (m > 0 == n > 0))
return negate ? −possible : possible;
} catch(e){
return null;
}
};
console.log(findNthRoot(45, 6)); 출력
콘솔의 출력은 -
1.8859727740585395