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

Tell us what’s happening:

audio.addEventListener("ended", () => {
  const currentSongIndex = getCurrentSongIndex()
  const nextSongExists = (userData.songs.length - 1)
  if(userData.songs.length  > currentSongIndex){
    const nextSongExists = false
  }
  else{
    nextSongExists = true
  }
});

Your code so far

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 87

hello guys am stuck up somewhere here on this step

Can you give more detail? what is the problem and/or hint?

its telling me that i need to modify the existing ended event listener and its content.

Hi. You need to use ternary operator.

hey am still stuck on how i can make it out

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

syntax error:
const variables can’t be redeclared or reassigned

audio.addEventListener("ended", () => {
  const currentSongIndex = getCurrentSongIndex()
  if(userData.songs.length > currentSongIndex? 'true':'false'){
     nextSongExists = false
  }
  else{
    nextSongExists = true
  }
});

i aint using const but still telling me to modify the ended click event

You need to learn more about the ternary operator and how to use it properly. Example:

const someVariable = x > y ? true : false;

You should not modify the existing ended event listener and its content.

it seems you changed something you should not have changed

for this your nextSongExists will always be false. The requirement is to have a const variable with the appropriate boolean value, you get that assigning a comparison to the variable, so remove your if statement

hey @hiekamara1

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

1 Like

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