This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

Date.prototype.getSeconds()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

getSeconds() 메서드는 Date 객체의 초 값을 현지 시간에 맞춰 반환합니다.

시도해 보기

const moonLanding = new Date("July 20, 69 00:20:18");

console.log(moonLanding.getSeconds());
// Expected output: 18

구문

js
dateObj.getSeconds();

반환 값

현지 시간 기준 초를 나타내는 0에서 59 사이의 정수.

예제

getSeconds() 사용하기

다음 예제는 Date 객체 Xmas95의 값을 사용해 변수 seconds에 30을 할당합니다.

js
var Xmas95 = new Date("December 25, 1995 23:15:30");
var seconds = Xmas95.getSeconds();

console.log(seconds); // 30

명세

Specification
ECMAScript® 2026 Language Specification
# sec-date.prototype.getseconds

브라우저 호환성

같이 보기