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

Hàm Math.cos () trong JavaScript

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

Cú pháp

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

Math.cos(90)

Ví dụ

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

Đầu ra

cosine value of the given angle: -0.4480736161291702