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

Làm thế nào để lấy cosine của một số trong JavaScript?


Để lấy cosin của một số trong JavaScript, hãy sử dụng phương thức Math.cos (). Phương thức cos trả về một giá trị số từ -1 đến 1, đại diện cho cosin của góc.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để lấy cosin của một số -

<html>
   <head>
      <title>JavaScript Math cos() Method</title>
   </head>
   <body>
      <script>
         var value = Math.cos(90);
         document.write("First Value : " + value );
         
         value = Math.cos(30);
         document.write("<br />Second Value : " + value );
         
         value = Math.cos(-1);
         document.write("<br />Third Value : " + value );
         
         value = Math.cos(2*Math.PI);
         document.write("<br />Fourth Value : " + value );
      </script>
   </body>
</html>