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 trialOzgur Parlakkilic
8,399 PointsMy playlist.js is in the correct spot inside the js folder, and my code is correct but it doesnt show up in my chrome
My playlist.js is in the correct spot inside the js folder, and my code is correct but it doesnt show up in my chrome browser. Is Chrome not supported by this. This is my code ; var playlist = []; playlist.push('I Did It my Way'); playlist.push('Respect', 'Imagine'); playlist.unshift('Born to Run'); playlist.unshift('Louie Louie', 'Maybellene'); printlist( playlist );
2 Answers
millogt
7,644 PointsTry adding CamelCase to your code. Good luck!
Ozgur Parlakkilic
8,399 Pointswill do, I useally do, but when i do the exercises I try to copy the instructor so that I dont have any problems with Workspaces.
Daesha Williams
Front End Web Development Techdegree Student 2,876 PointsAdding CamelCase worked perfectly. Mine wasn't worked either but that helped! Thank you!
Ozgur Parlakkilic
8,399 PointsOzgur Parlakkilic
8,399 PointsOK, I am going to answer my own question. printList function is with a capital L not lowercase. Since i split the screen up the font is too small and thought it was lowercase , thats my bad. Thanks anyways