JavaScript Reference/Javascript Methods/getMilliseconds

Материал из Web эксперт
Версия от 08:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"getMilliseconds()" Example

    
<html>
<body>
<button onclick="var myDate = new Date(); 
                 alert(myDate.getMilliseconds());">
get milliseconds </button>
</body>
</html>



"getMilliseconds()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |Date                                                          |
+----------------+--------------------------------------------------------------+



"getMilliseconds()" Syntax, Parameters and Note

Note:
Returns the number of milliseconds elapsed during its current second. 
Return value: 0 to 999.
    
Syntax:
    
dateName.getMilliseconds()