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

Tell us what’s happening: I’m trying to start this project. I’m on the first step. My solution isn’t being accepted.

Your code so far

let playlistSongs = document.getElementById(“#playlist-songs”);
let playButton = document.getElementById(“#play”);
let pauseButton = document.getElementById(“#pause”);

Challenge Information:

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

getElementById knows that the argument being passed in will be an id so there is no need to indicate that by using #

4 Likes

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