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