Q:

getmonth javascript

new Date().getMonth(); //note that Jan=0, Dec=11 (annoying I know)
5

var d = new Date();
var n = d.getMonth();
 
1
var date=new Date();
var month=new Array();
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";
var n = month[date.getMonth()];
1
var Xmas95 = new Date();
var options = { month: 'long'};
console.log(new Intl.DateTimeFormat('en-US', options).format(Xmas95));
// December
console.log(new Intl.DateTimeFormat('de-DE', options).format(Xmas95));
// Dezember
1
var today = new Date();
var month = today.getMonth(); // Returns 9
console.log(month); // Output: 9
-1

New to Communities?

Join the community