// 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
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
getMonth() + 1 //January is set to 0 [indexes]