I am trying to do the following:
const date = new Date()
new Intl.DateTimeFormat("en", {
timeZone: "en",
weekday: 'long',
year: 'numeric',
month: 'numeric',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
hour12: true
}).formatToParts(date)
However, I am getting the following in IE11:
Object doesn't support property or method 'formatToParts'
Am I missing something here? I can see from the previous issues that this is/was suppported.