当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript tan()方法
The tan() method returns a number that represents the tangent of an angle.
tan()方法可以返回正切值
Math.tan(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。数字 |
In this example we will get the tangent of different numbers:
这个举例中我们将得到不同数字的正切值:
<script type="text/javascript"> document.write(Math.tan(0.50) + "<br />") </script> |
The output of the code above will be:
输出结果为:
0.5463024898437905 |
tan()
How to use tan() to get the tangent of different numbers.
怎样使用tan()来获得不同数字的正切值