mylloon.fr/static/js/index.js

15 lines
361 B
JavaScript
Raw Normal View History

window.addEventListener("load", () => {
const tags = [
"Comment ça marche un PC 😵‍💫",
"Idiot certifié",
"undefined",
"/api/v1/love",
"Étudiant qui va rater son master",
2023-10-13 20:59:08 +02:00
"Peak D2 sur Valo 🤡",
"1312",
];
2023-10-13 19:12:41 +02:00
document.getElementById("subname").textContent =
tags[Math.round(Math.random() * (tags.length - 1))];
});