요약(Summary)
제곱근을 리턴함
문법(Syntax)
1 | Math.sqrt(x) |
인자(Parameters)
인자명 | 데이터형 | 필수/옵션 |
---|---|---|
x | number | 필수 |
반환값(Return)
number, x에 대한 제곱근
예제(Example)
1 2 3 4 | alert(Math.sqrt(25)); // number, 5 alert(Math.sqrt(100)); // number, 10 alert(Math.sqrt(5)); // number, 2.23606797749979 alert(Math.sqrt(-5)); // Nan, 제곱근은 음수일 수 없음 |