Learn Basic String and Array Methods by Building a Music Player - Step 38

Tell us what’s happening:

Task is to make sure song starts from the beginning.What is wrong?

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

 if(userData?.currentSong || userData?.currentSong.id !==song.id){audio.currentTime=0}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0

Challenge Information:

Learn Basic String and Array Methods by Building a Music Player - Step 38

Hi @zm17jaga

You should create an if statement with the condition userData?.currentSong === null || userData?.currentSong.id !== song.id . Don’t forget to include optional chaining.

You need to include the falsy part.

Happy coding

1 Like