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