Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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));
 
PREVIOUS NEXT
Tagged: #convert #UTC #date #Indonesian #local #date #format
ADD COMMENT
Topic
Name
9+8 =