Answers for "convert UTC date to Indonesian local date format"

0

convert UTC date to Indonesian local date format

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));
Posted by: Guest on April-02-2022

Code answers related to "convert UTC date to Indonesian local date format"

Code answers related to "Javascript"

Browse Popular Code Answers by Language