Tell us what’s happening:
I think I have a problem with resetButton.setAttribute, I don’t know if I have to write it differently, like resetButton.ariaLabel.
if (userData?.songs.length === 0) {
const resetButton = document.createElement(“button”);
const resetText = document.createTextNode(“Reset Playlist”);
resetButton.id = “reset”;
resetButton.setAttribute(‘aria-label’, ‘Reset playlist’);
}
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
if (userData?.songs.length === 0) {
const resetButton = document.createElement("button");
const resetText = document.createTextNode("Reset Playlist");
resetButton.id = "reset";
resetButton.setAttribute('aria-label', 'Reset playlist');
}
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36
Challenge Information:
Learn Basic String and Array Methods by Building a Music Player - Step 90