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 trialhoffmaa
6,260 PointsQuotes around list items
I'm confused as to why the video doesn't show creating a list with quotes around the numbers ie: [1, 2, 3, 4] but our code challenge doesn't pass unless we use quotes around our colors list.
1 Answer
Zach Hudson
7,702 PointsNo quotes means it is a number (int), quotes means it is text (string). The use of quotes is dependent on whether you want an int or a string.
No quotes = int
Quotes = string
Mezbaur Rahman
607 Pointssimples :)
darren logue
7,322 Pointsdarren logue
7,322 PointsCan't rem the challenge but in this example...the numbers are integers, colors are strings.