当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math tan()用法及代码示例


JavaScript Math.tan() 函数返回指定数字的正切值。

用法:

Math.tan(x)

tan() 是一个静态方法,使用 Math 类名调用。

Math.tan() 参数

Math.tan() 函数接受:

  • x - 需要其正切值的数字(以弧度为单位)。

从数学返回值。tan()

  • 返回给定角度的正切(以弧度为单位)。

示例 1:使用数学。tan()

// tangent of 1 radian
var value1 = Math.tan(1);
console.log(value1); // Output: 1.5574077246549023

// negative radians are allowed
var value2 = Math.tan(-2);
console.log(value2); // Output: 2.185039863261519

// Math constants can be used
var value3 = Math.cos(Math.PI);
console.log(value3); // Output: -1

输出

1.5574077246549023
2.185039863261519
-1

示例 2:使用带度数的 Math.tan()

// custom function for angle in degrees
function tan(degrees) {
  var radians = (degrees * Math.PI) / 180;
  return Math.tan(radians);
}

// tangent of 57 degrees
value1 = tan(57);
console.log(value1); // Output: 1.5398649638145825

value2 = tan(0);
console.log(value2); // Output: 0

value3 = tan(45);
console.log(value3); // Output: 0.9999999999999999

输出

1.5398649638145825
0
0.9999999999999999

在上面的示例中,我们定义了一个函数,它将度数值转换为弧度,然后将其传递给 Math.tan()

这里,tan(45)0.99999999999999代替1因为浮点数没有完美地存储在内存中。

我们可以用类似的方式定义自定义函数来扩展这些内置函数的函数。

相关用法


注:本文由纯净天空筛选整理自 JavaScript Math tan()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。