JavaScript Math cos 方法


JavaScript Math cos 方法

<html>

   <head>
      <title>JavaScript Math cos() Method</title>
   </head>

   <body>

      <script type = "text/javascript">
         var value = Math.cos(90);
         document.write("First Test Value : " + value );

         var value = Math.cos(30);
         document.write("<br />Second Test Value : " + value );

         var value = Math.cos(-1);
         document.write("<br />Third Test Value : " + value );

         var value = Math.cos(2*Math.PI);
         document.write("<br />Fourth Test Value : " + value );
      </script>

   </body>
</html>