JavaScript Math atan2() Method

Assume you had a point with the (x,y) coordinates of (4,8), you could calculate the angle in radians between that point and the positive X axis as follows

Definition and Usage

The Math.atan2() method returns the arctangent of the quotient of its arguments, as a numeric value between PI and -PI radians.

The number returned represents the counterclockwise angle in radians (not degrees) between the positive X axis and the point (x, y).

Note: With atan2(), the y coordinate is passed as the first argument and the x coordinate is passed as the second argument.

Syntax

Math.atan2(y, x)

Parameters

Parameter Description
y Required.
The y coordinate.
x Required.
The x coordinate.

Return Value

Type Description
NumberPI to -PI.
NaN if the values are empty or not numeric.

Browser Support

Math.atan2() is an ECMAScript1 (ES1) feature.

ES1 (JavaScript 1997) is fully supported in all browsers:

Chrome IE Edge Firefox Safari Opera
Yes Yes Yes Yes Yes Yes