JavaScript atan() Method
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