Good evening everyone.
In the above project I have an object that has a movie title as a key and each movie has an object with details about the movie.
I would like to display each movie inside the HTML but for now, I displayed each title converting it from object to array.
The 2nd step is to print all values (movie details) but I am not sure if I need another loop. (I tried to use Object.entries again but I still could not make it work.
My question is in line 42, ul.innerHTML = ${key} ${value}
is not valid because ‘value’ it’s an object.