Konversi Tanggal UTC ke Format Tanggal Lokal Indonesia

const event = new Date("2022-04-02T10:32:00Z");
const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };

console.log(event.toLocaleDateString('id', options));
Stern