"use strict"; Array.from(document.getElementsByClassName("relative-timestamp")).forEach( function (timestamp) { timestamp.innerText = new Intl.DateTimeFormat(undefined, { dateStyle: "long", timeStyle: "short", }).format(new Date(timestamp.dateTime)); } );