Date.prototype.getUTCHours()

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.

getUTCHours () 메서드는 표준시에 따라 지정된 날짜의 시간을 반환합니다.

Syntax

js
dateObj.getUTCHours();

Return value

0부터 23까지의 정수로, 표준시에 따라 지정된 날짜의 시간을 나타냅니다.

Examples

Using getUTCHours()

다음 예제에서는 현재 시간의 시간 부분을 시간 변수로 지정합니다.

js
var today = new Date();
var hours = today.getUTCHours();

명세

Specification
ECMAScript Language Specification
# sec-date.prototype.getutchours

브라우저 호환성

BCD tables only load in the browser

See also