1new Date("1983-March-25").toLocaleDateString('fr-CA', { year: 'numeric', month: '2-digit', day: '2-digit' })
2'03/25/1983'
1const d = new Date('2010-08-05')
2const ye = new Intl.DateTimeFormat('en', { year: 'numeric' }).format(d)
3const mo = new Intl.DateTimeFormat('en', { month: 'short' }).format(d)
4const da = new Intl.DateTimeFormat('en', { day: '2-digit' }).format(d)
5
6console.log(`${da}-${mo}-${ye}`)