JavaScript Tutorial/Date/getUTCSeconds — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:25, 26 мая 2010

Date.getUTCSeconds()

The getUTCSeconds() method returns the seconds portion of the Date object, converted to universal time and expressed as an integer from 0 to 59.



<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
dateVar = new Date();
alert(dateVar.getUTCSeconds());
//  -->
</script>
</head>
<body>
</body>
</html>