Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMark Chang
5,214 Pointsmy program can't work
I run my program it only shows :
My Music Playlist with Song and Artist
it didn't appear the song name and the artist name, only appears Title and blank.
Code: https://w.trhou.se/9feiyxee7x
click playlist.js in the js folder for the code
can anyone answer the problem? thanks
1 Answer
nick black
5,578 PointslistHTML += '<li>' + songs[i][0] + 'by' = songsp[i][1] + '</li>';
On line 17 in your program, when you call songs[i][1] to put the artist name, you have a typo there. songsp[i][1] vs songs[i][1]
Correct the typo and it should run as expected!
Mark Chang
5,214 PointsMark Chang
5,214 PointsThanks for answer my question :)