I love that CoffeeScript compiles == into the JavaScript === operator. But what if you want the original JS == semantics? Are they still available? I've pored over the documentation and can't find anything enabling this.

As a possible extension to this, is there a way to inline blocks of regular JS into CoffeeScript code so that it isn't compiled?

I'd prefer to avoid editing the compiled JS output, since I'm using Chirpy to auto-generate it in Visual Studio.

link|improve this question

1  
Why do you need == ? The accepted way to do this stuff is via explicit coercion. a.toString() === b.toString() or parseInt(a, 10) === parseInt(b, 10). == is not to be trusted except for a very few specific cases that arguably should be handled for you by the coffee script compiler. – Alex Wayne Aug 11 '11 at 21:52
@Squeegy - Partly an academic question, actually, but I was mostly looking for a shorter form of parseInt(a, 10) === parseInt(b, 10). – Justin Morgan Aug 11 '11 at 22:02
@Joseph - "Pored" is a word, and it doesn't mean the same as "poured". – Justin Morgan Aug 11 '11 at 22:11
1  
My point is simply to say that most coffee scripters would insist that using backticks is "doing it wrong". But if you are cool with that, go crazy :) – Alex Wayne Aug 11 '11 at 22:17
3  
@Justin +a === +b will do what you want in that example. Nice little trick to have up your sleeve. :) – Trevor Burnham Aug 12 '11 at 2:33
feedback

1 Answer

up vote 19 down vote accepted

As a possible extension to this, is there a way to inline blocks of regular JS into CoffeeScript code so that it isn't compiled?

Yes, here's the documentation. You need to wrap the JavaScript code in backticks (`). This is the only way for you to directly use JavaScript's == in CoffeeScript. For example:

CoffeeScript Source [try it]
if `a == b`
    console.log "#{a} equals #{b}!"
Compiled JavaScript
if (a == b) {
  console.log("" + a + " equals " + b + "!");
}

CoffeeScript itself uses == to implement the existential operator (?). In most situations x? compiles to x == null, relying on the fact that null == undefined in JavaScript.

link|improve this answer
Perfect. The ` wrapper is just what I was looking for, thank you. – Justin Morgan Aug 11 '11 at 22:09
feedback

Your Answer

 
or
required, but never shown

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