Math对象为数学常量和函数提供属性和方法。与其他全局对象不同,Math不是构造函数。Math的所有属性和方法都是静态的,可以通过将Math作为对象来调用,而无需创建它。本文主要介绍JavaScript(JS) Math.tan( x ) 方法。

1、描述

这个方法返回一个数字的正切值。 tan方法返回一个表示角度正切的数值。

2、语法

它的语法如下:

Math.tan( x )

3、参数

: 表示弧度角度的数字。

4、返回值

返回一个数字的正切值。

5、使用示例

<html>   
   <head>
      <title>JavaScript Math tan() Method</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var value = Math.tan( -30 );
         document.write("Math.tan( -30 ) : " + value ); 
var value = Math.tan( 90 ); document.write("<br />Math.tan( 90 ) : " + value );
var value = Math.tan( 45 ); document.write("<br />Math.tan( 45 ) : " + value );
var value = Math.tan( Math.PI/180 ); document.write("<br />Math.tan( Math.PI/180 ) : " + value );
</script> </body> </html>

6、输出

Math.tan( -30 ) : 6.405331196646276
Math.tan( 90 ) : -1.995200412208242
Math.tan( 45 ) : 1.6197751905438615
Math.tan( Math.PI/180 ) : 0.017455064928217585

推荐文档