(function () {
const d = new Date();
const a = new Date(d);
a.setDate(d.getDate() + 2);
const b = new Date(d);
b.setDate(d.getDate() + 5);
const format = date =>
date.toLocaleDateString("fr-FR", { day: "numeric", month: "long" });
const el = document.getElementById("ed-range");
if (el) el.textContent = `${format(a)} – ${format(b)}`;
})();
Avis
Il n’y a pas encore d’avis.