현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
Date.now()
메소드는 UTC 기준으로 1970년 1월 1일 0시 0분 0초부터 현재까지 경과된 밀리 초를 반환합니다.
문법
var timeInMs = Date.now();
인자
없음
설명
now() 메소드는 1970년 1월 1일 0시 0분 0초부터 현재까지 경과된 밀리 초를 Number
형으로 반환합니다.
now()는 Date
의 정적 메소드이기 때문에, 항상 Date.now() 처럼 사용하셔야 합니다.
Polyfill
이 메소든는 ECMA-262 5판에서 표준화되었습니다. 아직 이 메소드를 지원하도록 갱신되지 않은 엔진들은 이 메소드의 미지원에 대한 차선책으로 다음 코드를 활용하실 수 있습니다.
if (!Date.now) { Date.now = function now() { return new Date().getTime(); }; }
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 5.1 (ECMA-262) The definition of 'Date.now' in that specification. |
Standard | Initial definition. Implemented in JavaScript 1.5. |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Date.now' in that specification. |
Standard | |
ECMAScript 2017 Draft (ECMA-262) The definition of 'Date.now' in that specification. |
Draft |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 5 | 3.0 (1.9) | 9 | 10.50 | 4 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
See also
Performance.now()
— provides timestamps with sub-millisecond resolution for use in measuring web page performanceconsole.time()
/console.timeEnd()