[JS] Math.pow와 Math.sqrt()

daun·2022년 8월 8일
0

JS에서 제곱근 구하기

Math.sqrt(x)

예제

Math.sqrt(9); // 3
Math.sqrt(2); // 1.414213562373095

Math.sqrt(1);  // 1
Math.sqrt(0);  // 0
Math.sqrt(-1); // NaN

출처 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt

profile
Hello world!

0개의 댓글