Math.tan()

Math.tan() 静态方法返回以弧度表示的数字的正切值。

¥The Math.tan() static method returns the tangent of a number in radians.

Try it

语法

¥Syntax

js
Math.tan(x)

参数

¥Parameters

x

表示角度(以弧度表示)的数字。

返回值

¥Return value

x 的正切。如果 xInfinity-InfinityNaN,则返回 NaN

¥The tangent of x. If x is Infinity, -Infinity, or NaN, returns NaN.

注意:由于浮点精度,不可能获得精确的值 π/2,因此如果不是 NaN,结果总是有限的。

¥Note: Due to floating point precision, it's not possible to obtain the exact value π/2, so the result is always finite if not NaN.

描述

¥Description

因为 tan()Math 的静态方法,所以你始终将其用作 Math.tan(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。

¥Because tan() is a static method of Math, you always use it as Math.tan(), rather than as a method of a Math object you created (Math is not a constructor).

示例

¥Examples

使用 Math.tan()

¥Using Math.tan()

js
Math.tan(-Infinity); // NaN
Math.tan(-0); // -0
Math.tan(0); // 0
Math.tan(1); // 1.5574077246549023
Math.tan(Math.PI / 4); // 0.9999999999999999 (Floating point error)
Math.tan(Infinity); // NaN

Math.tan() 和 π/2

¥Math.tan() and π/2

无法准确计算 tan(π/2)

¥It's not possible to calculate tan(π/2) exactly.

js
Math.tan(Math.PI / 2); // 16331239353195370
Math.tan(Math.PI / 2 + Number.EPSILON); // -6218431163823738

将 Math.tan() 与度值结合使用

¥Using Math.tan() with a degree value

由于 Math.tan() 函数接受弧度,但使用度数通常更容易,因此以下函数接受以度为单位的值,将其转换为弧度并返回正切值。

¥Because the Math.tan() function accepts radians, but it is often easier to work with degrees, the following function accepts a value in degrees, converts it to radians and returns the tangent.

js
function getTanDeg(deg) {
  const rad = (deg * Math.PI) / 180;
  return Math.tan(rad);
}

规范

Specification
ECMAScript Language Specification
# sec-math.tan

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看