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 trialRobert Booth
2,290 Pointsmulti-line commenting syntax
Can someone please confirm for me what I am doing wrong in declaring this multi-line commenting syntax?
2 Answers
Jacob Mishkin
23,118 Pointswhat you are look for is this:
//this here is single, below is the markup to declare a multi-line commenting syntax
/*
var a = 'foo A';
alert(a);
*/
var b = 'foo B';
alert(b);
I hope this helps.
Jason Anders
Treehouse Moderator 145,860 PointsHi Robert, If you code post your code, we can help you troubleshoot. :)