Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

JavaScript Math sin() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The JavaScript Math sin( ) method in Javascript is used to return the sine of a number. The Math.sin() method returns a numeric value between -1 and 1, which represents the sine of the angle given in radians. The sin() is a static method of Math, therefore, it is always used as Math.sin(), rather than as a method of a Math object created. 

Syntax:

Math.sin(value)

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

  • value: Which is a number given in radians. 

Return Value: The Math.sin() method returns the sine of the given numbers between 1 and -1. 

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

Example 1: 

Javascript




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


Output:

When zero is  passed as a parameter: 0

Example 2: When 1 is passed as a parameter. 

Javascript




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


Output:

Result : 0.8414709848078965

Example 3: When PI is passed as a parameter. 

Javascript




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


Output:

Result : 1

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:

  • Google Chrome 1 and above
  • Internet Explorer 3 and above
  • Firefox 1 and above
  • Opera 3 and above
  • Safari 1 and above

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.


My Personal Notes arrow_drop_up
Last Updated : 02 Dec, 2022
Like Article
Save Article
Similar Reads
Related Tutorials