Contact: aviboots(AT)netvision.net.il
41,565 questions
54,185 answers
573 users
const date = new Date(2022, 7, 13); const month_name = date.toLocaleString('default', { month: 'long' }); console.log(month_name); /* run: "August" */