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