Javascript date toLocaleDateString() method converts a date to a string, returning the "date" portion using the operating system's locale's conventions.
Its syntax is as follows −
Date.toLocaleString()
Returns the "date" portion using the operating system's locale's conventions.
Try the following example.
<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>
Formated Date : 7/28/1993