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

Tell us what’s happening:

Hey

Not sure what I am missing here? can anyone help please

Thanks
Iskren

Your code so far

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

/* file: styles.css */

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

<button class="playlist-song-info"><span class="playlist-song-title"></span></button>

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15

Challenge Information:

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

What is the error message you see ?

You should interpolate song.title as the content of your span element.

You did not specify the song.title

<button class="playlist-song-info"><span class="playlist-song-title">{{ song.title }}</span></button>

Is that what you were missing ?

Its still not working

<button class="playlist-song-info"><span class="playlist-song-title">{{ song.title }}</span></button>```

can you help please, my code is not working

Hi @iskren500

You have too many curly braces on either side, and no dollar sign.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.