Przejdź do treści

Pobieranie minut - getMinutes

Jak pobrać minutę z podanej daty?

Date.prototype.getMinutes()
Wartość:
Number - minuta (0...59) albo NaN (gdy bieżący obiekt nie przechowuje poprawnej daty i czasu)
Wyjątki:
TypeError - bieżący obiekt nie jest typu daty i czasu

Pobiera liczbową minutę z obiektu daty i czasu, przeliczoną do lokalnej strefy czasowej.

Przykład Date.prototype.getMinutes

new Date("1410-07-15T13:30+02:00").getMinutes(); // 30
 
new Date(NaN).getMinutes();                      // NaN
 
Date.prototype.getMinutes.call(null);            // TypeError
Date.prototype.getMinutes.call(undefined);       // TypeError
Date.prototype.getMinutes.call(0);               // TypeError
Date.prototype.getMinutes.call("");              // TypeError
Date.prototype.getMinutes.call("2000");          // TypeError
Date.prototype.getMinutes.call({});              // TypeError

Komentarze

Zobacz więcej komentarzy

Facebook