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

JavaScript JavaScript Loops, Arrays and Objects Tracking Multiple Items with Arrays Using For Loops with Arrays

Mick Webb
Mick Webb
2,247 Points

Code is not printing to the HTML page after writing it from the video.

This is my playlist.js code: I have followed the video along step by step:

var playList = [ 'I Did It My Way', 'Respect', 'Imagine', 'Born to Run', 'Louie Louie', 'Maybellene' ];

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);

Once I save the file and launch it in the browser, nothing shows except for "My Music Playlist" at the top. Please help, thanks.

2 Answers

Aakash Srivastava
Aakash Srivastava
5,415 Points

Hey Mick Webb , you have problem in concatenating the string . Here is your code having errorr :

listHTML += '<li>; + list[i] + '</li>';      // you have inserted semicolon in between concatenation and also forgot to enclose first <li> here within single quote

Here is the right way :

var playList = ['I Did It My Way', 'Respect', 'Imagine', 'Born to Run', 'Louie Louie', 'Maybellene'];

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);

Hope it helped :)

Mick Webb
Mick Webb
2,247 Points

Thanks a lot, much appreciated!