Javascript commenting should use // method like with PHP, not /* ... */
Reasons:
- it breaks indentation (since comment starts at beginning of line)
- uncommenting multiple lines doesn't work - it adds another set of /*
... */ if you reselect the lines
- prevents nesting of comments (ie if there is already a comment in a
code block which you want to comment, the existing comment will close
the new comment)