Math.cos()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
試してみましょう
構文
Math.cos(x)
引数
x
-
余弦を返すラジアンの角度。
返値
与えられた数値の余弦 (コサイン) です。
解説
Math.cos()
メソッドはラジアンで指定された角度の余弦 (コサイン) を表す -1 から 1 までの範囲の数値を表します。
cos()
は Math
の静的メソッドであるため、生成した Math
オブジェクトのメソッドとしてではなく、常に Math.cos()
として使用するようにしてください (Math
はコンストラクターではありません)。
例
Math.cos() の使用
js
Math.cos(0); // 1
Math.cos(1); // 0.5403023058681398
Math.cos(Math.PI); // -1
Math.cos(2 * Math.PI); // 1
仕様書
Specification |
---|
ECMAScript Language Specification # sec-math.cos |
ブラウザーの互換性
BCD tables only load in the browser