A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/javascript/javascript-math-atan2-method/ below:

JavaScript Math atan2() Method - GeeksforGeeks

JavaScript Math atan2() Method

Last Updated : 01 Aug, 2023

Javascript Math.atan2() method is used to return the arctangent of the quotient of its arguments. The Math.atan2() method returns a numeric value between -Π and Π representing the angle theta of an (x, y) point and the positive x-axis. This is the counterclockwise angle, measured in radians, between the positive X-axis, and the point (x, y).

Syntax:  

Math.atan2(value1, value2)

Parameters: This method accepts two parameters as mentioned above and described below:  

Returns: It returns the arctangent of the quotient of its arguments.

Below are examples of the Math atan2() Method. 

Example 1: When the y-coordinate is greater than the x-coordinate:

JavaScript
console.log(Math.atan2(90, 15));  

Output
1.4056476493802699

Example 2: When y-coordinate is smaller than x-coordinate  

Input : Math.atan2(15, 90);
Output : 0.16514867741462683
JavaScript
console.log(Math.atan2(15, 90));  

Output
0.16514867741462683

Example 3: When y-coordinate is the same as x-coordinate 

JavaScript
 console.log(Math.atan2(90, 90));  

Output
0.7853981633974483

We have a complete list of Javascript Math Objects methods, to check those please go through this Javascript Math Object Complete reference article.

Supported Browsers: 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4