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

Remove commas between objects values

Hey. I have an object. When im print it to the page (inner HTML) I have commas between each value. Any advice on how to delete them? Thanks. Github: https://github.com/alonl6/techdegree01

Sorry. values = properties.

Raffael Dettling
Raffael Dettling
32,998 Points

It would be easier and quicker with some lines of code^^

2 Answers

Rhys Kearns
Rhys Kearns
4,976 Points

It's because in you are still applying the:

.citation:before {
  content: ", ";
  font-style: normal;
}
.year:before {
  content: ", ";
  font-style: normal;
}

You are going to have to do a lot of validation :)