• JavaScript Video Tutorials

JavaScript - Date toDateString() Method



Description

Javascript date toDateString() method returns the date portion of a Date object in human readable form.

Syntax

Its syntax is as follows −

Date.toDateString()

Return Value

Returns the date portion of a Date object in human readable form.

Example

Try the following example.

<html>   
   <head>
      <title>JavaScript toDateString Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var dt = new Date(1993, 6, 28, 14, 39, 7);
         document.write( "Formated Date : " + dt.toDateString() );
      </script>   
   </body>
</html>

Output

Formated Date : Wed Jul 28 1993
javascript_date_object.htm
Advertisements