當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。