Is there a way to change month title Jänner to Janner while using below code?
var date = new Date(Date.UTC(2020, 0, 20, 3, 23, 16, 738));
console.log(new Intl.DateTimeFormat('de-at', { month: 'long' }).format(date));
date = new Date(Date.UTC(2020, 2, 20, 3, 23, 16, 738));
console.log(new Intl.DateTimeFormat('de-at', { month: 'long' }).format(date));
Output:
'Jänner'
'März'
Expected output:
'Janner'
'Marz'
we want to replcae this ä with a without any other logic. Is there any other method available in Intl.DateTimeFormat to achieve this behaviour?