x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>Javascript Math.sin()</h1>
6
<p>Angle in radians = (angle in degrees) * PI / 180.</p>
7
<script>
8
    document.write(Math.sin(60 * Math.PI / 120))
9
</script>
10
11
</body>
12
</html>