Math.sin method
The Math.sin method returns
the sine of a number (this number
must be an angle in radians).
Syntax
Math.sin(number);
Example
Let's output the sine of
the number 7:
console.log(Math.sin(7));
The code execution result:
0.6569865987187891