In what ways can you comment in Coffeescript? The docs say you can use 3 hash symbols to start and close a comment block

###
  comments
  go
  here
###

I've found that I can sometimes use the following two formats

`// backticks allow for straight-javascript, 
 //but the closing backtick can't be on a comment line (I think?)
`

Are there any simpler ways to insert short comments in coffeescript?

Edit: do NOT use this style

Since this is getting a lot of views, I want to emphasize that this

/* comment goes here */

produces a MATH error when the /* is on its own line. As Trevor pointed out in a comment on the question, this is a regex, NOT a comment.

link|improve this question

77% accept rate
4  
If a /*...*/ comment "works," it's because the CoffeeScript compiler is interpreting it as a regex. Definitely not recommended! – Trevor Burnham Oct 16 '11 at 2:59
Wow, thanks for the tip! I'm still pretty new to CoffeeScript, and learning it somewhat rushed. – Eric Hu Oct 17 '11 at 0:41
feedback

2 Answers

up vote 24 down vote accepted

Use a single # sign

# like this

One character seems pretty minimal ;)

Also:

###
This block comment (useful for ©-Copyright info) also gets 
passed on to the browsers HTML /* like this! */
###
link|improve this answer
Aw, can't believe I missed that. Thanks :P – Eric Hu Oct 16 '11 at 1:21
3  
This is usually how you will want to comment; the triple hash is most often used when you want the comment to fall through to the javascript (copyright messages, usually). – Aaron Dufour Oct 16 '11 at 18:44
feedback

The main way to comment is sh/Perl/Ruby/... style # comments:

# This comment goes to the end of the line
# and it won't appear in the "compiled"
# JavaScript version.

You use the block style ### comments when you want a comment to appear in the JavaScript version:

Sometimes you'd like to pass a block comment through to the generated JavaScript. For example, when you need to embed a licensing header at the top of a file. Block comments, which mirror the syntax for heredocs, are preserved in the generated code.

So if you start with

###
PancakeParser is Public Domain
###

then you'd get this JavaScript comment in the generated JavaScript:

/*
PancakeParser is Public Domain
*/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.