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

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

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

Date.toString()

The toString() method returns a string representation of the Date object in the local time zone.

The toString() method displays the date in the local time zone.



<html>
    <script language="JavaScript">
    <!--
    theDate = new Date();
    document.write(theDate.toString());
    -->
    </script>
    </html>