Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
const date = new Date(2022, 9, 21); const shortName = date.toLocaleString('en-US', {month: 'short'}); console.log(shortName); /* run: Oct */
const date = new Date(2022, 0, 21); const shortName = date.toLocaleString('en-US', {month: 'short'}); console.log(shortName); /* run: Jan */