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

Melissa St Moore
Melissa St Moore
1,087 Points

How 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 !

Mike Henry
Mike Henry
Courses Plus Student 5,373 Points

Hi Melissa, Please upload your code and I'll take a look at it. Mike

Melissa St Moore
Melissa St Moore
1,087 Points

Hey 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
Steven Parker
229,644 Points

Congrats on resolving your own issue! :+1:

As an alternative to choosing a "best answer", you could mark the issue closed by prefixing the title with [SOLVED].