Tell us what’s happening:
To store the current time of the song when it is paused, set the songCurrentTime
of the userData
object to the currentTime
of the audio
variable.
Note: You should not use optional chaining for this step because userData.songCurrentTime
will not be null
or undefined
at this point.
this is what the instruction says but I’m sure I’m doing it correctly is there something im mising out?
Your code so far
const playlistSongs = document.getElementById(“playlist-songs”);
const playButton = document.getElementById(“play”);
const pauseButton = document.getElementById(“pause”);
const nextButton = document.getElementById(“next”);
const previousButton = document.getElementById(“previous”);
const shuffleButton = document.getElementById(“shuffle”);
const allSongs = [
{
id: 0,
title: “Scratching The Surface”,
artist: “Quincy Larson”,
duration: “4:25”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/scratching-the-surface.mp3”,
},
{
id: 1,
title: “Can’t Stay Down”,
artist: “Quincy Larson”,
duration: “4:15”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/cant-stay-down.mp3”,
},
{
id: 2,
title: “Still Learning”,
artist: “Quincy Larson”,
duration: “3:51”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/still-learning.mp3”,
},
{
id: 3,
title: “Cruising for a Musing”,
artist: “Quincy Larson”,
duration: “3:34”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/cruising-for-a-musing.mp3”,
},
{
id: 4,
title: “Never Not Favored”,
artist: “Quincy Larson”,
duration: “3:35”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/never-not-favored.mp3”,
},
{
id: 5,
title: “From the Ground Up”,
artist: “Quincy Larson”,
duration: “3:12”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/from-the-ground-up.mp3”,
},
{
id: 6,
title: “Walking on Air”,
artist: “Quincy Larson”,
duration: “3:25”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/walking-on-air.mp3”,
},
{
id: 7,
title: “Can’t Stop Me. Can’t Even Slow Me Down.”,
artist: “Quincy Larson”,
duration: “3:52”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/cant-stop-me-cant-even-slow-me-down.mp3”,
},
{
id: 8,
title: “The Surest Way Out is Through”,
artist: “Quincy Larson”,
duration: “3:10”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/the-surest-way-out-is-through.mp3”,
},
{
id: 9,
title: “Chasing That Feeling”,
artist: “Quincy Larson”,
duration: “2:43”,
src: “https://s3.amazonaws.com/org.freecodecamp.mp3-player-project/chasing-that-feeling.mp3”,
},
];
const audio = new Audio();
let userData = {
songs: […allSongs],
currentSong: null,
songCurrentTime: 0,
};
const playSong = (id) => {
const song = userData?.songs.find((song) => song.id === id);
audio.src = song.src;
audio.title = song.title;
if (userData?.currentSong === null || userData?.currentSong.id !== song.id) {
audio.currentTime = 0;
} else {
audio.currentTime = userData?.songCurrentTime;
}
userData.currentSong = song;
playButton.classList.add(“playing”);
audio.play();
};
const pauseSong = () => {
audio.currentTime = userData.songCurrentTime;
};
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/122.0.0.0 Safari/537.36
Challenge Information:
Learn Basic String and Array Methods by Building a Music Player - Step 41