Javascript date toLocaleFormat() method converts a date to a string using the specified formatting.
Note − This method may not compatible with all the browsers.
Its syntax is as follows −
Date.toLocaleFormat()
formatString − A format string in the same format expected by the strftime() function in C.
Returns the formatted date.
Try the following example.
<html> <head> <title>JavaScript toLocaleFormat Method</title> </head> <body> <script type="text/javascript"> var dt = new Date(1993, 6, 28, 14, 39, 7); document.write( "Formated Date : " + dt.toLocaleFormat( "%A, %B %e, %Y" ) ); </script> </body> </html>
Formated Date : Wed Jul 28 1993 14:39:07 GMT+0530 (India Standard Time)