Copyright © tutorialspoint.com
Javascript date toLocaleFormat() method converts a date to a string using the specified formatting.
Note: This method may not work in all the browsers like IE.
Date.toLocaleFormat(formatString); |
Here is the detail of parameters:
formatString : A format string in the same format expected by the strftime() function in C.
Returns the formatted date.
<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>
|
This will produce following result :
Formated Date : Wednesday, July , 1993 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com