MrGithubby / MusicBoxProject

0 stars 0 forks source link

add functionality to Get Next Song Button #45

Closed Ashleighjg closed 2 months ago

Ashleighjg commented 2 months ago

added to html

const artist = localStorage.getItem('artist'); const genre = localStorage.getItem('genre');

if (artist) { getMusicPlaylistbyArtist();

} if (genre) { getMusicPlaylistbyGenre(); }

});