Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Femke Boermans
11,240 PointsStuck in Checking Values
I can't solve the next test:
Create a method called 'isValidEmail' that takes one argument that returns true when a string with an '@' symbol is passed, false if not.
I tried everything but I either get Null or Bummer! You didn't define the 'isValidEmail' function.
3 Answers

Andrew Chalkley
Treehouse Guest TeacherCan you show us your code?

Marieke Beckschebe
6,158 PointsSame problem here. This is my code
<script src="jquery.js"></script> <script>function isValidEmail(email){ return email.indexOf("@") != -1; } </script>

Marieke Beckschebe
6,158 PointsNever mind, problem solved :)