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 trialMelissa St Moore
1,087 PointsHow come when I try to add to this array, and preview the screen, it is blank?
I've completed the coding and it works but how come when I try to add to the playList array, and preview the screen, it is blank? I thought the list.length property automatically detects how many items are in the array? Thanks !
Melissa St Moore
1,087 PointsHey Mike - Forgot to add a comma after the "maybeline" Thanks for trying to help! Answered my own q.
:)
var playList = [
'I Did It My Way',
'Respect',
'Imagine',
'Born to Run',
'Louie Louie',
'Maybellene',
'What'
];
function print(message) {
document.write(message);
}
function printlist( list ) {
var listHTML = '<ol>';
for ( var i = 0; i < list.length; i += 1) {
listHTML += '<li>' + list[i] + '</li>';
}
listHTML += '</ol>'
print( listHTML );
}
printlist(playList);
1 Answer
Steven Parker
231,269 PointsCongrats on resolving your own issue!
As an alternative to choosing a "best answer", you could mark the issue closed by prefixing the title with [SOLVED].
Mike Henry
Courses Plus Student 5,373 PointsMike Henry
Courses Plus Student 5,373 PointsHi Melissa, Please upload your code and I'll take a look at it. Mike