Looking to create a simple web app using Javascript and wondering where to begin.
I want to control a list of items like this:
item1
item2
item3
The goal is to make the list shift in a loop every day. For example, after Midnight, I would like the script to rearrange items to:
item3
item1
item2
This pattern should repeat on each new day.
Wondering if accomplishing this with Javascript only using basic if-else statements is feasible. Still learning Javascript and looking for guidance on where to begin.
Thank you.