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() 정적 메서드는 숫자의 코사인을 라디안 단위로 반환합니다.

시도해보기

구문

js
Math.cos(x)

매개변수

x

라디안 단위로 각도를 나타내는 숫자입니다.

반환 값

-1 이상 1 이하의 x의 코사인을 포함합니다. xInfinity, -Infinity 또는 NaN이면 NaN을 반환합니다.

설명

cos()Math의 정적 메서드이므로, 생성한 Math 객체의 메서드가 아닌 Math.cos()로 항상 사용합니다(Math는 생성자가 아닙니다).

예제

Math.cos() 사용하기

js
Math.cos(-Infinity); // NaN
Math.cos(-0); // 1
Math.cos(0); // 1
Math.cos(1); // 0.5403023058681398
Math.cos(Math.PI); // -1
Math.cos(2 * Math.PI); // 1
Math.cos(Infinity); // NaN

명세서

Specification
ECMAScript Language Specification
# sec-math.cos

브라우저 호환성

BCD tables only load in the browser

같이 보기