I would like to make something where I have a bank of phrases or questions and every few seconds or every time the page is refreshed a new message is shown.
Any idea how to do this?
I would like to make something where I have a bank of phrases or questions and every few seconds or every time the page is refreshed a new message is shown.
Any idea how to do this?
 
    
     
    
    setInterval(() => {
  alert("My message");
}, 1000);
Where you replace 1000 with the number of milliseconds you want the message to repeat. 1000 milliseconds = 1 second.
