JavaScript Math atan 方法


JavaScript Math atan 方法

<html>

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

   <body>

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

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

         value = Math.atan(30);
         document.write("<br />Third Test Value : " + value );

         var value = Math.atan("string");
         document.write("<br />Fourth Test Value : " + value );
      </script>

   </body>
</html>