Date.prototype.setSeconds()
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.
setSeconds()
메서드는 현지 시간에 따라 지정된 날짜의 초를 설정합니다.
시도해보기
구문
js
setSeconds(secondsValue)
setSeconds(secondsValue, msValue)
매개변수
secondsValue
-
초를 나타내는 0에서 59 사이의 정수입니다.
msValue
Optional-
선택 과목. 밀리 초를 나타내는 0에서 999 사이의 숫자입니다.
반환 값
1970년 1월 1일 00:00:00 UTC와 업데이트 된 날짜 사이의 밀리 초 숫자입니다.
설명
msValue
매개 변수를 지정하지 않으면
getMilliseconds()
메서드에서
반환된 값이 사용됩니다.
지정한 매개 변수가 예상 범위를 벗어나면 setSeconds()
는 Date
객체의 날짜 정보를 업데이트하려고
시도합니다. 예를 들어, secondsValue
에 100을 사용하면 Date
객체에 저장된 분 값이 1 증가하고
초 값은 40이 됩니다.
예제
setSeconds()
사용하기
js
var theBigDay = new Date();
theBigDay.setSeconds(30);
명세
Specification |
---|
ECMAScript Language Specification # sec-date.prototype.setseconds |
브라우저 호환성
BCD tables only load in the browser