var date = new Date();
var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);
// Make an instance or object of the Date constructor
const currentDate = new Date();
// get the current month number
const monthNumber = currentDate.getMonth();
console.log(monthNumber); // eg: 8
let dateObj = new Date();
let myDate = (dateObj.getUTCFullYear()) + "/" + (dateObj.getMonth() + 1)+ "/" + (dateObj.getUTCDate());
//Get full month from date javascript
const date = new Date(2009, 10, 10); // 2009-11-10
const month = date.toLocaleString('default', { month: 'long' });
console.log("Result - ", month); // Result - November
const today = new Date()
today.toLocaleString('default', { month: 'long' })
// GET DYNAMIC MONTH STRING
const monthtostring = month => new Date(`${month}/01/2032`).toLocaleString('en-US', { month: 'long' })
monthtostring(8) // August
const monthtostring = month => new Date(`${month}/01/2032`).toLocaleString('pt-BR', { month: 'long' })
monthtostring(03) // março
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