Answers for "javascript get the current month?"

5

current month in 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);
Posted by: Guest on January-05-2021
2

get current date javascript full month

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
Posted by: Guest on July-11-2020

Code answers related to "javascript get the current month?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language