JavaScript comments
JavaScript has two forms of comments // and /* */. // just comments out a single line. /* */ can comment out a whole block of code. Try and avoid the use of /* */ as some of these characters can legally occur in code so it's not a reliable method of commenting.
Comments
Post a Comment