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

Tell us what’s happening:

Within the button element in the renderSongs function, add an onclick attribute as the first attribute. For the value, call the deleteSong function and interpolate song.id.

Your code so far

          renderSongs.onclick(deleteSong(${song.id}))

You should add an onclick attribute as the first attribute of the delete button and pass in deleteSong(${song.id}).

it seems to be not passing

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

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

Challenge Information:

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

Hi @email2shaheer

Take a look a few lines up to get an idea of the code structure for the onclick attribute.

Happy coding

on what line specifically i cant seem to find it il keep looking

Ctrl + F for onclick

its only showing me the one i wrote inreder songs with this test

Open the step in a new tab, then search from the top line.

Otherwise you may need to use another browser, or restart your computer.

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