The toDateString()
method returns the date portion of a Date
object interpreted in the local timezone in English.
The toDateString()
method returns the date portion of a Date
object interpreted in the local timezone in English.
toDateString()
A string representing the date portion of the given Date
object in human readable form in English.
Date
instances refer to a specific point in time. toDateString()
interprets the date in the local timezone and formats the date part in English. It always uses the following format, separated by spaces:
For example: "Thu Jan 01 1970".
toTimeString()
.toString()
.toUTCString()
.toLocaleDateString()
.const d = new Date(1993, 5, 28, 14, 39, 7); console.log(d.toString()); // logs Mon Jun 28 1993 14:39:07 GMT-0600 (PDT) console.log(d.toDateString()); // logs Mon Jun 28 1993
Note: Month are 0-indexed when used as an argument of Date
(thus 0 corresponds to January and 11 to December).
Desktop | Mobile | Server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | Deno | Node.js | |
toDateString |
1 |
12 |
1 |
5.5 |
5 |
1 |
4.4 |
18 |
4 |
10.1 |
1 |
1.0 |
1.0 |
0.10.0 |
© 2005–2022 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString