Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I noticed that JavaScript's new Date() function is very smart in accepting dates in several formats.

Xmas95 = new Date("25 Dec, 1995 23:15:00")
Xmas95 = new Date("2009 06 12,12:52:39")
Xmas95 = new Date("20 09 2006,12:52:39")

I could not find documentation anywhere showing all the valid string formats while calling new Date() function.

This is for converting a string to date. If we look at the opposite side that is converting date object to string, until now I was under the impression that JavaScript doesn't have a built-in API to format a date object into a string.

Editor's note: The following approach is the asker's attempt that worked on a particular browser but does not work in general; see the answers on this page to see some actual solutions.

Today, I played with the toString() method on the date object and surprisingly it serves the purpose of formatting date to strings.

var d1=new Date();
d1.toString('yyyy-MM-dd');       //returns "2009-06-29"
d1.toString('dddd, MMMM ,yyyy')  //returns "Monday, June 29,2009"

Also here I couldn't find any documentation on all the ways we can format the date object into a string.

Where is the documentation which lists the format specifiers supported by the Date() object?

share|improve this question
102  
your examples don't actually work the way you think they do: jsfiddle.net/edelman/WDNVk/1 – Jason Dec 3 '10 at 17:46
11  
Sorry, passing format strings in toString works in .NET, and it may work in Java, but as Jason pointed out, this doesn't actually work in Javascript. – Joshua Carmody Mar 8 '11 at 20:17
6  
-1. Doesn't work. Use DateJS. – Lee Whitney Aug 23 '11 at 17:56
10  
This doesn't work - I don't understand why people have upvoted this answer. – Zorayr Feb 8 '12 at 1:48
9  
@Zorayr: It's not an answer... – Lightness Races in Orbit Feb 4 at 10:49
show 11 more comments

23 Answers

up vote 362 down vote accepted

I love 10 ways to format time and date using JavaScript and Working with Dates.

Basically, you have three methods and you have to combine the strings for yourself:

getDate(): Returns the date
getMonth(): Returns the month
getFullYear(): Returns the year

Example:

<script type="text/javascript">
    var d = new Date();
    var curr_date = d.getDate();
    var curr_month = d.getMonth() + 1; //Months are zero based
    var curr_year = d.getFullYear();
    document.write(curr_date + "-" + curr_month + "-" + curr_year);
</script>
share|improve this answer
65  
@Kyralessa use AdBlock ;) – torvin May 25 '11 at 10:56
4  
Awesome links! Specially the second one. – HotFudgeSunday May 28 '11 at 0:01
26  
despite the many upvotes, does not actually answer the question – peller Oct 26 '11 at 22:44
8  
Actually answers the question in the code block – McKay Mar 6 '12 at 18:08
2  
Both of these sites have restrictive licenses. So if you use the code (without permission), you'll be in violation. Momentjs (stackoverflow.com/a/10119138/278976) looks like a way better option and is MIT license. – Homer6 May 24 '12 at 0:00
show 13 more comments

Moment.js

It is a lightweight (5.5 KB) JavaScript date library for parsing, manipulating, and formatting dates.

var a = moment([2010, 1, 14, 15, 25, 50, 125]);
a.format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Sunday, February 14th 2010, 3:25:50 pm"
a.format("ddd, hA");                       // "Sun, 3PM"
share|improve this answer
10  
Seems much better than datejs... tried out both. – kape123 May 15 '12 at 1:07
14  
Great option. Wish I could upvote more. – Homer6 May 24 '12 at 0:03
6  
What a powerful elegant library!! Great find!!! – TruMan1 Jun 14 '12 at 22:57
7  
thank you for posting this + 500 – chris hough Aug 16 '12 at 0:45
3  
This also provides a decorator pattern around the Date object instead of monkey punching the core object, so you're less likely to get conflicts down the road. – Gabe Martin-Dempesy Nov 26 '12 at 18:20
show 8 more comments

If you are already using jQuery UI in your project, you can use the built-in datepicker method for formatting your date object:

$.datepicker.formatDate('yy-mm-dd', new Date(2007, 1 - 1, 26));

However, the datepicker only formats dates, and cannot format times.

Have a look at jQuery UI datepicker formatDate, the examples.

share|improve this answer
5  
for those of us using jQuery UI anyway, this is a great easy method. – Matthew Doyle Oct 26 '11 at 13:59
how to tell it to use local time or Zulu? – Ustaman Sangat Mar 2 '12 at 16:14
5  
i prefer use this solution able to get the time without any library : new Date().toTimeString().match( /^([0-9]{2}:[0-9]{2}:[0-9]{2})/ )[0] FYI – markcial May 31 '12 at 8:05
is there a way to do this. $.datepicker.formatDate('yy-mm-dd', new Date("txtAdvDate".Val()); or some thing like that – Pomster Jun 1 '12 at 13:09
@Pomster - what would make you think the string "txtAdvDate" would have a val method on it? Do you mean $('#txtAdvDate').val()? Assuming it fits one of the constructors (see here w3schools.com/jsref/jsref_obj_date.asp) then that would work just fine. – vbullinger Sep 27 '12 at 15:46
show 1 more comment

Make sure you checkout Datejs when dealing with dates in JavaScript. It's quite impressive and well documented as you can see in case of the toString function.

share|improve this answer
1  
This is a fantastic library. I have created a version of my own, but I have scrapped that project in favor of using this. Thanks for the link!!!! (can you tell I am excited) – John Jul 21 '11 at 4:03
1  
+1 for using a already existing good lib, instead of half baked solution – Anurag Uniyal Sep 27 '11 at 16:18
2  
I couldn't find a way to feed datejs with milliseconds to create a date. Like so: var dateTime = new Date(); dateTime.setTime(milliseconds); – Arne Evertsson Nov 30 '11 at 12:58
1  
I can't believe such a popular library doesnt have the ability to create a date using milliseconds/seconds since the epoch. – you786 Jul 27 '12 at 0:10
3  
25k? Just for dates? Ouch. – blesh Jan 8 at 19:53
show 3 more comments

Where is the documentation which lists the format specifiers supported by the Date() object?

I stumbled across this today and was quite surprised that no one took the time to answer this simple question. True, there are many libraries out there to help with date manipulation. Some are better than others. But that wasn't the question asked.

AFAIK, pure JavaScript doesn't support format specifiers the way you have indicated you'd like to use them. But it does support methods for formatting dates and/or times, such as .toLocaleDateString(), .toLocaleTimeString(), and .toUTCString().

The Date() object reference I use most frequently is on the w3schools.com website (but a quick Google search will reveal many more that may better meet your needs).

Also note that the Date Object Properties section provides a link to prototype, which illustrates some ways you can extend the Date object with custom methods. There has been some debate in the JavaScript community over the years about whether or not this is best practice, and I am not advocating for or against it, just pointing out its existence.

share|improve this answer
7  
+1 for addressing the actual question. – Ian Goldby Aug 15 '12 at 15:03
7  
Only 176 more votes to reach the top! – Scott Offen Sep 6 '12 at 23:04
function dateToYMD(date) {
    var d = date.getDate();
    var m = date.getMonth() + 1;
    var y = date.getFullYear();
    return '' + y + '-' + (m<=9 ? '0' + m : m) + '-' + (d <= 9 ? '0' + d : d);
}
share|improve this answer
3  
simple & concise. that's how I like it ;) – tschundeee Dec 13 '12 at 9:35
1  
It should be accepted answer, because it gives the required format (01-01-2000, not 1-1-2000) – Ćukasz Lech Apr 12 at 13:56

The functionality you cite is not standard Javascript, not likely to be portable across browsers and therefore not good practice. The ECMAScript 3 spec leaves the parse and output formats function up to the Javascript implementation. ECMAScript 5 adds a subset of ISO8601 support. I believe the toString() function you mention is an innovation in one browser (Mozilla?)

Several libraries provide routines to parameterize this, some with extensive localization support. You can also check out the methods in dojo.date.locale.

share|improve this answer

I made this very simple formatter, it's cut/n/pastable:

function DateFmt() {
  this.dateMarkers = { 
     d:['getDate',function(v) { return ("0"+v).substr(-2,2)}], 
         m:['getMonth',function(v) { return ("0"+(v+1)).substr(-2,2)}],
         n:['getMonth',function(v) {
             var mthNames = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
             return mthNames[v];
             }],
         w:['getDay',function(v) {
             var dayNames = ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"];
             return dayNames[v];
             }],
         y:['getFullYear'],
         H:['getHours',function(v) { return ("0"+v).substr(-2,2)}],
         M:['getMinutes',function(v) { return ("0"+v).substr(-2,2)}],
         S:['getSeconds',function(v) { return ("0"+v).substr(-2,2)}],
         i:['toISOString',null]
  };

  this.format = function(date, fmt) {
    var dateMarkers = this.dateMarkers
    var dateTxt = fmt.replace(/%(.)/g, function(m, p){
    var rv = date[(dateMarkers[p])[0]]()

    if ( dateMarkers[p][1] != null ) rv = dateMarkers[p][1](rv)

    return rv
  });

  return dateTxt
  }
}

fmt = new DateFmt()
v = fmt.format(new Date(),"%w %d:%n:%y - %H:%M:%S %i")

http://snipplr.com/view/66968.82825/

share|improve this answer
1  
Lone link is considered a poor answer since it is meaningless by itself and target resource is not guaranteed to be alive in the future. Please try to include at least summary of information you are linking to. – j0k Aug 31 '12 at 10:06
All fixed up now - no longer a lone link. – Cheeso Jan 16 at 0:58
2  
I like this class but think it should be a "static" class. No need to instantiate it more than once. (should not need new DateFmt()) – Cheeso Jan 16 at 0:59

DateJS is certainly full-featured, but I'd recommend this MUCH simpler lib (JavaScript Date Format) which I prefer simply because it's only 120 lines or so.

share|improve this answer

Having looked through several of the options provided in other answers, I decided to write my own limited but simple solution that others may also find useful.

/**
* Format date as a string
* @param date - a date object (usually "new Date();")
* @param format - a string format, eg. "DD-MM-YYYY"
*/
function dateFormat(date, format) {
    // Calculate date parts and replace instances in format string accordingly
    format = format.replace("DD", (date.getDate() < 10 ? '0' : '') + date.getDate()); // Pad with '0' if needed
    format = format.replace("MM", (date.getMonth() < 9 ? '0' : '') + (date.getMonth() + 1)); // Months are zero-based
    format = format.replace("YYYY", date.getFullYear());
    return format;
}

Example usage:

console.log("The date is: " + dateFormat(new Date(), "DD/MM/YYYY"));
share|improve this answer
2  
replace operations are not really efficient, so it's a better practise to prevent it. – mrzmyr Oct 9 '12 at 15:43
A good answer too, but: - if the month is october, getMonth() <9=> true, so the MM return "010" instead of "10". I suggest to edit from "(date.getMonth() < 9 ? '0' : '')" to "(date.getMonth()+1 < 9 ? '0' : '')" - using replace with only a string may only replace 1 string, so if the format is for example "YYYY-MM-DD (MM)", the second MM will not be replaced. I suggest to use /MM/g instead of "MM" - The function replace is slow if JS has to create a new regexp every time, but if you save a compiled regexp, the use of replace is not so slow. – Adrian Maire Apr 17 at 9:03

You can just expand the Date Object with a new format method as noted by meizz, below is the code given by the author. And here is a jsfiddle.

Date.prototype.format = function(format) //author: meizz
{
  var o = {
    "M+" : this.getMonth()+1, //month
    "d+" : this.getDate(),    //day
    "h+" : this.getHours(),   //hour
    "m+" : this.getMinutes(), //minute
    "s+" : this.getSeconds(), //second
    "q+" : Math.floor((this.getMonth()+3)/3),  //quarter
    "S" : this.getMilliseconds() //millisecond
  }

  if(/(y+)/.test(format)) format=format.replace(RegExp.$1,
    (this.getFullYear()+"").substr(4 - RegExp.$1.length));
  for(var k in o)if(new RegExp("("+ k +")").test(format))
    format = format.replace(RegExp.$1,
      RegExp.$1.length==1 ? o[k] :
        ("00"+ o[k]).substr((""+ o[k]).length));
  return format;
}

alert(new Date().format("yyyy-MM-dd"));
alert(new Date("january 12 2008 11:12:30").format("yyyy-MM-dd h:mm:ss"));
share|improve this answer

I use Steven Levithan's date formatter. It's nice, easy and fully customizable. He's the author of Regular Expressions Cookbook (O'Reilly).

share|improve this answer
Dup answer of Eric Wendelin's answer (so they both get a vote) – nwahmaet Mar 12 at 17:59

Just another option, which I wrote:

DP_DateExtensions Library

Not sure if it'll help, but I've found it useful in several projects - looks like it'll do what you need.

Supports date/time formatting, date math (add/subtract date parts), date compare, date parsing, etc. It's liberally open sourced.

No reason to consider it if you're already using a framework (they're all capable), but if you just need to quickly add date manipulation to a project give it a chance.

share|improve this answer
1  
I guess the new URL is depressedpress.com/javascript-extensions/dp_dateextensions – torvin May 25 '11 at 11:07

JsSimpleDateFormat is a library that can format the date object and parse the formatted string back to Date object. It uses the Java format (SimpleDateFormat class). The name of months and days can be localized.

Example:

var sdf = new JsSimpleDateFormat("EEEE, MMMM dd, yyyy");
var formattedString = sdf.format(new Date());
var dateObject = sdf.parse("Monday, June 29, 2009");
share|improve this answer

Formatting and especially parsing dates in JavaScript can be a bit of a headache. Not all browsers handle dates in the same way. So while it's useful to know the base methods, its more practical to use a helper library.

The XDate javascript library by Adam Shaw has been around since mid-2011 and is still under active development. It has fantastic documentation, a great API, formatting, tries to remain backwards-compatible and even supports localized strings.

Link to changing the locale strings: https://gist.github.com/1221376

share|improve this answer
+1 For XDate which is great. – Martin Wickman Jan 28 at 13:00

The correct way to format a date to return "2012-12-29" is with the script from JavaScript Date Format:

var d1 = new Date();
return d1.format("dd-m-yy");

This code does NOT work:

var d1 = new Date();
d1.toString('yyyy-MM-dd');      
share|improve this answer
TypeError: Object [object Date] has no method 'format' – Nakilon May 4 at 21:01

I came across a brand new JavaScript library called jPaq which provides a function that closely emulates PHP's date function. Documentation for this function can be found here: http://jpaq.org/documentation/Date.prototype.format%28%29/1.0/.

share|improve this answer

Personally, because I use both PHP and jQuery/javascript in equal measures, I use the date function from php.js http://phpjs.org/functions/date/

Using a library that uses the same format strings as something I already know is easier for me, and the manual containing all of the format string possibilities for the date function is of course online at php.net

You simply include the date.js file in your HTML using your preferred method then call it like this:

var d1=new Date();
var datestring = date('Y-m-d', d1.valueOf()/1000);

You can use d1.getTime() instead of valueOf() if you want, they do the same thing.

The divide by 1000 of the javascript timestamp is because a javascript timestamp is in miliseconds but a PHP timestamp is in seconds.

share|improve this answer

If you want to show only time with two Digits This may helps you .

var now = new Date();
var cHour = now.getHours();
var cMinuts = now.getMinutes();
var cSeconds = now.getSeconds();

var outStr = (cHour <= 0 ? ('0' + cHour) : cHour) + ':' + (cMinuts <= 9 ? ('0' + cMinuts) : cMinuts) + ':' + (cSeconds <= 9 ? '0' + cSeconds : cSeconds);
share|improve this answer

The answer is "nowhere" since the date formatting is proprietary functionality. I don't think the toString functions are intended to conform to a specific format. e.g. in the ECMAScript 5.1 spec (http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf, 2/8/2013, page 173), the toString function is documented as follows:

"The contents of the String are implementation-dependent"

Functions such as the samples below could be used to accomplish formatting fairly easily.

function pad(toPad, padWith) {
    return (String(padWith) + String(toPad)).slice(-1 * padWith.length);
}

function dateAsInputValue(toFormat) {
    if(!(toFormat instanceof Date)) return null;
    return toFormat.getFullYear() + "-" + pad(toFormat.getMonth() + 1, "00") + "-" + pad(toFormat.getDate(), "00");
}

function timeAsInputValue(toFormat) {
    if(!(toFormat instanceof Date)) return null;        
    return pad(toFormat.getHours(), "00") + ":" + pad(toFormat.getMinutes(), "00") + ":" + pad(toFormat.getSeconds(), "00");
}
share|improve this answer

When working with JavaScript, it's important to remember that it is Mozilla's intellectual property, and they are usually pretty solid with documenting it. Here are articles that should help anyone having trouble with dates:

share|improve this answer

Many frameworks (that you might already be using) have date formatting that you may not be aware of. jQueryUI was already mentioned, but other frameworks such as Kendo UI (Globalization), Yahoo UI (Util) and AngularJS have them as well.

// 11/6/2000
kendo.toString(new Date(value), "d")

// Monday, November 06, 2000
kendo.toString(new Date(2000, 10, 6), "D")
share|improve this answer

format method of Date can be used as shown below:

new Date().format("MMM dd, yyyy - hh:mm tt")

Output is Mar 26, 2013 - 02:06 PM

share|improve this answer
2  
nop. Output is TypeError: Object [object Date] has no method 'format' – Andreas Lyngstad May 2 at 9:33

protected by Kos Nov 22 '12 at 12:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.