Contact: aviboots(AT)netvision.net.il
39,893 questions
51,824 answers
573 users
function getMonthName(month){ const date = new Date(); date.setMonth(month - 1); const monthName = date.toLocaleString('en-us', { month: 'long' }); return monthName; } console.log(getMonthName(4)); /* run: April */
function getMonthName(month){ const date = new Date(); date.setMonth(month - 1); const monthName = date.toLocaleString('en-us', { month: 'short' }); return monthName; } console.log(getMonthName(4)); /* run: Apr */