Advertisement
Guest User

Untitled

a guest
Feb 10th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function timeIta() {
  2. document.body.querySelectorAll("time").forEach(function(e) {
  3. let dt = new Date(e.dateTime);
  4. let [d, g, o] = [
  5. dt.toLocaleDateString("en-GB"),
  6. dt.toLocaleString("it-IT", {
  7. weekday: "short"
  8. }),
  9. dt.toLocaleTimeString("it-IT")
  10. ];
  11. e.innerText = `${d} (${g[0].toUpperCase() + g.slice(1)}) ${o}`;
  12. });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement