How does Date.toLocaleDateString() work?
问题 I've to represent the date with local user's configurations. Follows the MDN description: The toLocaleDateString method relies on the underlying operating system in formatting dates. It converts the date to a string using the formatting convention of the operating system where the script is running. For example, in the United States, the month appears before the date (04/15/98), whereas in Germany the date appears before the month (15.04.98). I do this: var date = new Date (); console.log