--- title: Date.prototype.getUTCMilliseconds() slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds tags: - Date - JavaScript - Method - Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds original_slug: Web/JavaScript/Referencje/Obiekty/Date/getUTCMilliseconds ---
{{JSRef}}
Zwraca milisekundy dla określonej daty stosownie do czasu uniwersalnego.
dateObj.getUTCMilliseconds()
Brak.
Wartość zwracana getUTCMilliseconds
jest liczbą całkowitą z przedziału od 0 do 999.
getUTCMilliseconds()
Następujący przykład przypisuje część aktualnej daty określającą liczbę milisekund do zmiennej ms
.
var today = new Date(); var ms = today.getUTCMilliseconds();