aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html
blob: 5f997e45c14ada0cf0fa8447a6735f5944ac26a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
title: Date.prototype.getUTCMilliseconds()
slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds
translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds
browser-compat: javascript.builtins.Date.getUTCMilliseconds
---
<div>{{JSRef}}</div>

<p><strong>getUTCMilliseconds()</strong> 메서드는 표준시에 따라 지정된 날짜의 밀리 초를 반환합니다.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox"><code><var>dateObj</var>.getUTCMilliseconds()</code></pre>

<h3 id="Return_value">Return value</h3>

<p>0부터 999까지의 정수로, 표준시에 따라 지정된 날짜의 밀리 초를 나타냅니다.</p>

<h2 id="Examples">Examples</h2>

<h3 id="Using_getUTCMilliseconds()">Using <code>getUTCMilliseconds()</code></h3>

<p>다음 예제에서는 현재 시간의 밀리 초 부분을 밀리 초 변수에 할당합니다.</p>

<pre class="brush: js">var today = new Date();
var milliseconds = today.getUTCMilliseconds();
</pre>

<h2 id="specifications">명세</h2>

<p>{{Specifications}}</p>

<h2 id="browser_compatibility">브라우저 호환성</h2>

<p>{{Compat}}</p>

<h2 id="See_also">See also</h2>

<ul>
 <li>{{jsxref("Date.prototype.getMilliseconds()")}}</li>
 <li>{{jsxref("Date.prototype.setUTCMilliseconds()")}}</li>
</ul>