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 trial
fadi walter
2,785 Pointsblank page
var playList = []; palyList.push('fadi'); playList.push('lama'); playList.push('mimi'); playList.push('come on'); playList.unshift(mimti habibti);
printList(playList);
this is the list and i did link the home page to this external one ?
4 Answers
Alexander Davison
65,469 Pointsyou made a typo. you said palyList on line 2.
fadi walter
2,785 Pointsthanks for correcting the typo but it still showing BLANK page.
var playList = []; palyList.push('fadi'); playList.push('lama'); playList.push('mimi'); playList.push('come on'); playList.unshift(mimti habibti);
printList(playList);
Alexander Davison
65,469 PointsYou also forgot to put single quotes (') around the mimti habibti thing inside of unshift
fadi walter
2,785 Pointsvar playList = []; playList.push('fadi'); playList.push('lama'); playList.push('mimi'); playList.push('come on'); playList.unshift(mimti habibti);
printList(playList); NOTHING HAPPENED STILL SHOWING BALNK PAGE
Alexander Davison
65,469 PointsPut single quotes around mimti habibti. That should work
fadi walter
2,785 PointsTHANK YOU BROTHER