Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
function getMonthName(month : number){ const date = new Date(); date.setMonth(month - 1); const monthName = date.toLocaleString('en-us', { month: 'long' }); return monthName; } console.log(getMonthName(3)); /* run: "March" */
function getMonthName(month : number){ const date = new Date(); date.setMonth(month - 1); const monthName = date.toLocaleString('en-us', { month: 'short' }); return monthName; } console.log(getMonthName(3)); /* run: "Mar" */