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 Regular Expressions in JavaScript Validating a Form Form Validation

The JS RegEx hex color challenge says /#[A-F\d]{6}/ does not meet the requirements?? Why?

The JS RegEx hex color challenge says /#[A-F\d]{6}/ does not meet the requirements?? Why? Seems to work when I return the test(text). I can't think of a 6 character hex color that it would not work nor can I think of anything invalid that would be seen as valid. Enlighten me please.

1 Answer

needs starts and ends with plus case insensitive flag... /^#[A-F\d]{6}$/i