제곱, 제곱근과 관련된 Math 메소드를 활용하여 풀자
function solution(n) {
return Number.isInteger(Math.sqrt(n)) ? Math.pow(Math.sqrt(n)+1, 2) : -1;
}
Math.sqrt(n)
는 n의 제곱근을 반환한다Math.pow(n, count)
는 n을 count만큼 제곱한 값을 반환한다Number.isInteger(n)
는 n이 정수인지 아닌지를 판별해서 boolean 값을 반환한다다만, 0과 양수만 true이고 음수는 false가 반환된다