Currently, I am working on a Javascript project that involves displaying the day of the week. I have successfully accomplished this part, but now I am looking to incorporate photos alongside each day of the week as well. Is there a way to combine both text and images in an array item? Despite my efforts to find examples, all I come across are random photo apps, which do not meet my specific needs.
Check out My Day Tracker Project Here
var d = new Date();
var days = ["Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"];
document.getElementById("demo").innerHTML = days[d.getDay()];