Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.getMilliseconds()

Podsumowanie

Zwraca milisekundy określonej daty, stosownie do czasu lokalnego.

Składnia

dateObj.getMilliseconds()

Parametry

Brak.

Opis

Wartość zwracana przez getMilliseconds jest liczbą pomiędzy 0 a 999.

Przykłady

Przykład: Zastosowanie getMilliseconds()

Następujący przykład przydziela liczbę milisekund aktualnego czasu do zmiennej ms.

var today = new Date();
var ms = today.getMilliseconds(); 

Zobacz także

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, Witia, Mgjbot, Ptak82
 Ostatnia aktualizacja: teoli,