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


JavaScript Math sin()用法及代碼示例


JavaScript Math.sin() 函數返回指定數字的正弦值。

用法:

Math.sin(x)

sin() 是一個靜態方法,使用 Math 類名調用。

Math.sin() 參數

Math.sin() 函數接受:

  • x - 需要其正弦值的數字(以弧度為單位)。

從數學返回值。sin()

  • 返回給定角度的正弦值(介於-11)。

示例 1:使用數學。sin()

// sine of 1 radian
var value1 = Math.sin(1);
console.log(value1); // Output: 0.8414709848078965

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

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

輸出

0.8414709848078965
-0.9092974268256817
1

示例 2:使用帶度數的 Math.sin()

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

// sine of 57 degrees
value1 = sin(57);
console.log(value1); // Output: 0.8386705679454239

// sine of negative degrees
value2 = sin(-90);
console.log(value2); // Output: -1

value3 = sin(90);
console.log(value3); // Output: 1

輸出

0.8386705679454239
-1
1

在這裏,我們定義了一個 sin() 函數,它將度數值轉換為弧度,然後將其傳遞給 Math.sin()

我們可以用類似的方式定義自定義函數來擴展這些內置函數的函數。

相關用法


注:本文由純淨天空篩選整理自 JavaScript Math sin()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。