JavaScript Math tan() Method

The Javas Math.tan() method in Javascript is used to return the tangent of a number. The Math. tan() method returns a numeric value that represents the tangent of the angle. The tan() is a static method of Math, therefore, it is always used as Math.tan(), rather than as a method of a Math object created.

Syntax:  

Math.tan(value)

Parameters: This method accepts a single parameter as mentioned above and described below:  

Returns: The Math.tan() method returns the tangent of the given numbers.

Below is an example of the Math tan() Method. 

Example 1: In this example, we will pass 0 as a parameter.




<script type="text/javascript">
    console.log("When zero is passed as a parameter: "
    + Math.tan(0));
</script>

Output: 



When  zero is  passed as a parameter: 0

Example 2: When 1 is passed as a parameter.  




<script type="text/javascript">
    console.log("Result : " + Math.tan(1));
</script>

Output: 

Result : 1.557407724654902

Example 3: When PI is passed as a parameter.




<script type="text/javascript">
    console.log("Result : " + Math.tan(Math.PI / 4));
</script>

Output:  

Result : 0.9999999999999999

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: 

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.


Article Tags :