[계산]= 제곱근, 제곱근
자바스크립트 sqrt() 메소드 통사론
함수: 숫자의 제곱근을 반환합니다.
구문: Math.sqrt(x)
매개변수: x 필수입니다. 0보다 크거나 같은 숫자여야 합니다.
반환값: 매개변수 x의 제곱근. x가 0보다 작으면 NaN이 반환됩니다.
자바스크립트 sqrt() 메소드 예
<html> <body> <script type="text/javascript"> document.write(Math.sqrt(0) + "<br />") document.write(Math.sqrt(1) + "<br />") document.write(Math.sqrt(9) + "<br />") document.write(Math.sqrt(0.64) + "<br />") document.write(Math.sqrt(-9)) </script> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요