요약(Summary)
UTC를 기준으로 한 밀리세컨드(milliseconds)를 리턴
문법(Syntax)
1 | getUTCMilliseconds() |
인자(Parameters)
없음
반환값(Return)
number, 0~999, 밀리세컨드
설명(Description)
밀리세컨드는 1/1000 초와 같다.
예제(Example)
1 2 | Today = new Date(); alert(Today.getUTCMilliseconds()); |
참고