JavaScript atan() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript atan() Method

❮ JavaScript Math Object

Example

Return the arctangent of a specified number:

Math.atan(2);
Try it Yourself »

Definition and Usage

The atan() method returns the arctangent of a number as a value between -PI/2 and PI/2 radians.


Browser Support

Method
atan() Yes Yes Yes Yes Yes

Syntax

Math.atan(x)

Parameter Values

Parameter Description
x Required. A number

Technical Details

Return Value: A Number, from -PI/2 to PI/2, or NaN if the value is empty
JavaScript Version: ECMAScript 1

❮ JavaScript Math Object