Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm Math.sin () trong JavaScript

Hàm sin () của đối tượng Math chấp nhận một góc (tính bằng radian) và trả về giá trị sin của nó.

Cú pháp

Cú pháp của nó như sau

Math.sin(90)

Ví dụ

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.sin(90);
      document.write("sine value of the given angle: "+result);
   </script>
</body>
</html>

Đầu ra

sine value of the given angle: 0.8939966636005579