How to convert date value to local format string

Description

Date type's toLocaleString() returns the date and time in a locale format.

Example


var aDate = new Date(Date.UTC(2000, 0)); 
console.log(aDate);
console.log(aDate.toLocaleString());

The code above generates the following result.





















Home »
  Javascript »
    Javascript Reference »




Array
Canvas Context
CSSStyleDeclaration
CSSStyleSheet
Date
Document
Event
Global
History
HTMLElement
Input Element
Location
Math
Number
String
Window