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 join() array

This might be very simple but I am trying to use the join() array in order to remove the ' - ' from the last item on the array 'days'.

How can I do that? This is my code:

var days = [
  'Monday',
  'Tuesday',
  'Wednesday',
  'Thursday',
  'Friday',
  'Saturday',
  'Sunday'
];

var counter = 0;
while (counter < days.length) {
  document.write(days[counter]);
  counter++;
  days.join(', ');
}

1 Answer

I don't understand what you mean by remove the '-'

If you are just trying to join with a comma then you don't need the while loop

var days = [
  'Monday',
  'Tuesday',
  'Wednesday',
  'Thursday',
  'Friday',
  'Saturday',
  'Sunday'
];


document.write(days.join(', '));

Thank you for clarifying . Sorry I had the comma instead of the ' - '.