Math.sqrt()
: 숫자의 제곱근을 반환
Math.pow()
: 밑의 거듭제곱 값을 반환
function solution(n) {
let answer = 0;
let sqrt = Math.sqrt(n); //제곱식 구하기
if(sqrt % 1 === 0){ answer += Math.pow(sqrt+1,2); } //제곱근일 경우
else{ answer = -1; } //제곱근이 아닐 경우
return answer;
}
console.log("결과 : " + solution(121));
console.log("결과 : " + solution(3));
(출처 : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/pow)
삼항연산자
를 통한 함수 간소화
function solution(n) {
return Math.sqrt(n) % 1 === 0 ? Math.pow(Math.sqrt(n)+1,2) : -1;
}