Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get month name from Date

How can I generate the name of the month (e.g: Oct/October) from this date object in JavaScript?

var objDate = new Date("10/11/2009"); 
like image 501
Shyju Avatar asked Oct 29 '09 12:10

Shyju


1 Answers

Shorter version:

const monthNames = ["January", "February", "March", "April", "May", "June",    "July", "August", "September", "October", "November", "December"  ];    const d = new Date();  document.write("The current month is " + monthNames[d.getMonth()]);

Note (2019-03-08) - This answer by me which I originally wrote in 2009 is outdated. See David Storey's answer for a better solution.

like image 128
Jesper Avatar answered Sep 19 '22 18:09

Jesper