document .querySelectorAll("time[datetime]") .forEach( (e) => (e.innerText = new Date( e.getAttribute("datetime") ).toLocaleString()) ); function copyPasteContent() { navigator.clipboard .writeText(document.getElementById("paste-content").textContent) .catch((e) => console.error(e)); }