JavaScript中的Math.tan()函数
tan()Math对象的功能接受一个角度(以弧度为单位)并返回其切线值。
语法
其语法如下
Math.tan(90)
示例
<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.tan(90);
      document.write("Tangent value of the given angle: "+result);
   </script>
</body>
</html>输出结果
Tangent value of the given angle: -1.995200412208242