JavaScript toLocaleDateString() Method
Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
JavaScript toLocaleDateString() Method
❮ JavaScript Date Object
Example
Return the Date object as a string, using locale conventions:
var d = new Date();
var n = d.toLocaleDateString();
<!--
The result of n will be:
var d=new Date();
document.write(d.toLocaleDateString());
-->Try it Yourself »
Definition and Usage
The toLocaleDateString() method converts the date (not the time) of a Date object into a readable string, using locale conventions.
Browser Support
Method | |||||
---|---|---|---|---|---|
toLocaleDateString() | Yes | Yes | Yes | Yes | Yes |
Syntax
Date.toLocaleDateString()
Technical Details
Return Value: | A String, representing the date as a string |
---|---|
JavaScript Version: | ECMAScript 1 |
❮ JavaScript Date Object