Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 Math.hypot() 함수의 용도는 무엇입니까?

<시간/>

Math.hypot()

Math.Hypot() 메서드는 인수로 전달된 요소의 제곱합 합계의 제곱근을 찾는 데 사용됩니다. 이 방법은 실제로 측면이 인수로 전달되는 직각 삼각형의 빗변을 찾는 데 사용됩니다.

구문

Math.hypot(arg1, arg2,....);

예시

다음 예에서 직각 삼각형의 변은 빗변을 찾기 위해 전달됩니다. 숫자로 변환할 수 없는 값이 있으면 NaN 출력으로 표시됩니다.

<html>
<body>
<script>
   document.write(Math.hypot(7, 24));
   document.write("</br>");
   document.write(Math.hypot(7, "hi"));
</script>
</body>
</html>

출력

25
NaN


이 방법은 음수 값을 인수로 받아들이고 일부 제곱의 제곱근을 출력으로 제공하려고 시도합니다.

예시

<html>
<body>
<script>
   document.write(Math.hypot(-7, -24));
   document.write("</br>")
   document.write(Math.hypot(-3, -4))
</script>
</body>
</html>

출력

25
5


이 방법은 둘 이상의 여러 값을 취할 수 있으며 일부 제곱의 제곱근을 제공하려고 합니다.

예시

<html>
<body>
<script>
   document.write(Math.hypot(1, 2, 3));
</script>
</body>
</html>

출력

3.74165738677