javascript get current month

JavaScript
// Find current month in JavaScript
const localDate = new Date();
const months = [
  'January',
  'February',
  'March',
  'April',
  'May',
  'June',
  'July',
  'August',
  'September',
  'October',
  'November',
  'December',
];
let currentMonth = months[localDate.getMonth()];
console.log(currentMonth);new Date().getMonth(); //note that Jan=0, Dec=11 (annoying I know)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
var today = new Date();
var month = today.getMonth(); // Returns 9
console.log(month); // Output: 9

Source

Also in JavaScript: