Copyright © tutorialspoint.com
Javascript date toLocaleDateString() method converts a date to a string, returning the "date" portion using the operating system's locale's conventions.
Date.toLocaleDateString() |
Here is the detail of parameters:
NA
Returns the "date" portion using the operating system's locale's conventions.
<html> <head> <title>JavaScript toLocaleDateString Method</title> </head> <body> <script type="text/javascript"> var dt = new Date(1993, 6, 28, 14, 39, 7); document.write( "Formated Date : " + dt.toLocaleDateString() ); </script> </body> </html> |
This will produce following result :
Formated Date : Wednesday, July 28, 1993 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com