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

How can i generate Month name (e.g: Oct/October) from this date object in JavaScript?

var objDate = new Date("10/11/2009");
share|improve this question

11 Answers

up vote 112 down vote accepted

Shorter version:

var monthNames = [ "January", "February", "March", "April", "May", "June",
    "July", "August", "September", "October", "November", "December" ];

document.write("The current month is " + monthNames[d.getMonth()]);
share|improve this answer
37  
it is a bit frustrating that even having new Date() returning Tue Sep 06 2011 20:02:25 GMT+0200 (CEST) which clearly means the Date object already has all this internally defined (month and week day names) it is not public, so we have to type it all again. :( – zanona Sep 6 '11 at 18:04
Not an ideal solution if one has to include month names for each language supported. There's got to be a better way using String#split with toString or toDateString. – rxgx Oct 31 '11 at 19:18
3  
multiple languages = multi-dimensional array ;) translations["monthName"][currentLanguage][d.getMonth()] – yoshi Dec 30 '11 at 15:18
1  
-1 - multi-language problems – Tymek Jan 4 at 6:48

Here's another one, with support for localization :)

Date.prototype.getMonthName = function(lang) {
    lang = lang && (lang in Date.locale) ? lang : 'en';
    return Date.locale[lang].month_names[this.getMonth()];
};

Date.prototype.getMonthNameShort = function(lang) {
    lang = lang && (lang in Date.locale) ? lang : 'en';
    return Date.locale[lang].month_names_short[this.getMonth()];
};

Date.locale = {
    en: {
       month_names: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
       month_names_short: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    }
};

you can then easily add support for other languages:

Date.locale.fr = {month_names: [...]};

edit: nickf was faster :)

share|improve this answer
Thanks, nice solution. – Jesper Oct 29 '09 at 12:59

If you don't mind extending the Date prototype (and there are some good reasons to not want to do this), you can actually come up with a very easy method:

Date.prototype.monthNames = [
    "January", "February", "March",
    "April", "May", "June",
    "July", "August", "September",
    "October", "November", "December"
];

Date.prototype.getMonthName = function() {
    return this.monthNames[this.getMonth()];
};
Date.prototype.getShortMonthName = function () {
    return this.getMonthName().substr(0, 3);
};

// usage:
var d = new Date();
alert(d.getMonthName());      // "October"
alert(d.getShortMonthName()); // "Oct"

These functions will then apply to all javascript Date objects.

share|improve this answer
3  
"and there are some good reasons to not want to do this". Just curious: which reasons do you mean? – KooiInc Nov 20 '10 at 11:09
4  
@Kooilnc: It's because you're essentially working in the global space. If you import someone else's functions or libraries which also do this, then they could be overwriting each other. – nickf Nov 22 '10 at 8:50

You might use datejs to do that. Check the FormatSpecifiers, MMMM gives you the month's name:

var objDate = new Date("10/11/2009");
document.write(objDate.toString("MMMM"));

And datejs got that localized for more than 150 locales! See here

share|improve this answer
Date.prototype.getMonthName = function() {
          var monthNames = [ "January", "February", "March", "April", "May", "June", 
                        "July", "August", "September", "October", "November", "December" ];
          return monthNames[this.getMonth()];
     }

It can be used as
      var month_Name = new Date().getMonthName();
share|improve this answer

Store the names in a array and look up by the index of the month.

var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

document.write("The current month is " + month[d.getMonth()]);

JavaScript getMonth() Method

share|improve this answer

There's a really useful date bolt-on here: http://code.google.com/p/jqueryjs/source/browse/trunk/plugins/methods/date.js?r=6305 This extends the built-in Date class with methods such as getMonthName() etc..

share|improve this answer

I heartily recommend moment.js format which you can use like this:

moment().format("MMM");  // "April" - current date
moment(new Date(2012, 01, 04)).format("MMM");  // "Feb" - from a local date
moment.utc(new Date(2012, 00, 04).format("MMM"); // "Jan" - from a UTC date

In addition to a lengthy list of other features, it has strong support for internationalization.

share|improve this answer

Here is a neat method

(Ref: http://www.java2s.com/Tutorial/JavaScript/0240__Date/TranslatetheDategetMonthtomonthname.htm )

 <html>
<head>
<title>Combine Date Values</title>
</head>
<body>
<script language="JavaScript" type="text/javascript">
<!--

var months = new Array(12);
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

var current_date = new Date();
month_value = current_date.getMonth();
day_value = current_date.getDate();
year_value = current_date.getFullYear();

document.write("The current date is " + months[month_value] + " " +
day_value + ", " + year_value);

//-->
</script>
</body>
</html>
share|improve this answer

I have a partial solution that I came up with. It uses a regular expression to extract the month and day name. But as I look through the Region and Language options (Windows) I realize that different cultures have different format order... maybe a better regular expression pattern could be useful.

function testDateInfo() {
        var months = new Array();
        var days = new Array();
        var workingDate = new Date();
        workingDate.setHours(0, 0, 0, 0);
        workingDate.setDate(1);
        var RE = new RegExp("([a-z]+)","ig");
        //-- get day names 0-6
        for (var i = 0; i < 7; i++) {

            var day = workingDate.getDay();
            //-- will eventually be in order
            if (days[day] == undefined)
                days[day] = workingDate.toLocaleDateString().match(RE)[0];
            workingDate.setDate(workingDate.getDate() + 1);
        }
        //--get month names 0-11
        for (var i = 0; i < 12; i++) {
            workingDate.setMonth(i);
            months.push(workingDate.toLocaleDateString().match(RE)[1]);
        }
        alert(days.join(",") + " \n\r " + months.join(","));
    }
share|improve this answer
so, minimally it works with english and spanish... id's suspect anything that is DAY, MONTH date, year FORMAT – Remus Sep 12 '12 at 21:45
I've looked into it a bit, I think to have a truly language independent solution you would need to have a regular expression that uses UNICODE character ranges. The character ranges would be different for different alphabets so i don't think there would be a one size fits all RegExp that we could use. – Remus Sep 13 '12 at 12:48

Just extending on the many other excellent answers - if you are using jQuery - you could just do something like

$.fn.getMonthName = function(date) {

    var monthNames = [
    "January", "February", "March",
    "April", "May", "June",
    "July", "August", "September",
    "October", "November", "December"
    ];

    return monthNames[date.getMonth()];

};

where date is equal to the var d = new Date(somevalue). The primary advantage of this is per @nickf said about avoiding the global namespace.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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