Wed Sep 25 2024 21:37:02 GMT+0000 (Coordinated Universal Time)
Saved by @linezito
function displayWords() { const words = ["Hello", "World", "JavaScript", "Coding", "Infinity"]; setInterval(() => { console.log(words[Math.floor(Math.random() * words.length)]); }, 60000); // 60000 milliseconds = 1 minute } displayWords();
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments