THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

JavaScript toLocaleString() Method

Date Object Reference JavaScript Date Object

Example

Convert a Date object to a string, using locale conventions:

var d = new Date();
var n = d.toLocaleString();

The result of n will be:

Try it yourself »

Definition and Usage

The toLocaleString() method converts a Date object to a string, using locale settings.


Browser Support

Method
toLocaleString() Yes Yes Yes Yes Yes

Syntax

Date.toLocaleString()

Technical Details

Return Value: A String, representing the date and time as a string
JavaScript Version: 1.0

Date Object Reference JavaScript Date Object