요약(Summary)
아크탄젠트(arctangent) 값을 리턴한다.
문법(Syntax)
1 | Math.atan2(y,x) |
인자(Parameters)
인자명 | 데이터형 | 필수/옵션 | 설명 |
---|---|---|---|
y | number | 필수 | |
x | number | 필수 |
반환값(Return)
Math.PI 에서 -Math.PI 사이의 값(radian)
예제(Example)
1 | alert(Math.atan2(8,4)) // number, <span class="objectBox objectBox-number " role="presentation">1.1071487177940904</span> |
참고