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

Tell us what’s happening:

To fix that, you can set up an event listener which will detect when the currently playing song ends. The ended event listener is appropriate for this. It is fired when the playback of a media reaches the end.

Add an event listener to the audio element which listens for the ended event. Pass in a callback using arrow syntax with empty curly braces.

Your code so far

audio.addEventListener('ended')=()=>{}

You should use arrow syntax to pass in an empty callback to your ended event listener.

i have pushed my arrow syntax but it is not accepting the code

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 86

audio.addEventListener('ended')=()=>{}

The Event listener you are adding to audio needs a specified event, and then an action to perform on that event.

Such as:

button.addEventListener("click", doSomething);

It looks like you just have a little bit of a formatting issue. Your answer is almost there. You just need a second parameter for the “ended” event of audio.

Hint:
audio.addEventListener("ended", ... );

i have resolved the code after some more working out

1 Like

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