简介JavaScript中用于处理正切的Math.tan()方法
程序员文章站
2023-11-27 21:14:52
这个方法返回一个数字的正切值。tan 方法返回表示的角度的正切值。
语法
math.tan( x ) ;
下面是参数的详细信息:...
这个方法返回一个数字的正切值。tan 方法返回表示的角度的正切值。
语法
math.tan( x ) ;
下面是参数的详细信息:
- x: 一个数字,表示以角度表示弧度
返回值:
- 返回一个数字的正切值
例子:
<html> <head> <title>javascript math tan() method</title> </head> <body> <script type="text/javascript"> var value = math.tan( -30 ); document.write("first test value : " + value ); var value = math.tan( 90 ); document.write("<br />second test value : " + value ); var value = math.tan( 45 ); document.write("<br />third test value : " + value ); var value = math.tan( math.pi/180 ); document.write("<br />fourth test value : " + value ); </script> </body> </html>
这将产生以下结果:
first test value : 1 second test value : 21 third test value : 20 fourth test value : -20
下一篇: iOS自定义相机实现拍照、录制视频
推荐阅读