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

Stuck on JQuery Challenge the answer is not in the video.

Create a method called 'isValidEmail' that takes one argument that returns true when a string with an '@' symbol is passed, false if not. This is the answer from the video: function isValidEmail(email){ return email.indexOf("@") != -1;} This does not pass on the code challenge....? What am I doing wrong....Why are we being taught different from the video...? I have watched the video 4 times..taken a break and still can't work it out.

Neil

3 Answers

Lauren Boyes
Lauren Boyes
2,516 Points

What error response are you getting?

What I put in was correct.....looks like the spacing between items was wrong.

Hi Neil,

Thanks for emailing in! Try this as your answer...

function isValidEmail(email) { return email.indexOf("@") != -1; }

I hope this helps! Let me know if you have any questions. :) Thanks for being a member.<br>

Got this message from help desk....

James Barnett
James Barnett
39,199 Points

Neil Berriman - Sometimes with programming, whitespace is syntactically important.