8 lines
263 B
JavaScript
Raw Permalink Normal View History

2025-01-02 20:23:37 -08:00
const timeElements = document.querySelectorAll(".time");
timeElements.forEach((timeElement) => {
const dateStr = timeElement.textContent.split(" ").slice(0, 3).join(" ");
const date = new Date(dateStr);
timeElement.textContent = date.toLocaleString();
});