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.
==? The accepted way to do this stuff is via explicit coercion.a.toString() === b.toString()orparseInt(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:52parseInt(a, 10) === parseInt(b, 10). – Justin Morgan Aug 11 '11 at 22:02+a === +bwill do what you want in that example. Nice little trick to have up your sleeve. :) – Trevor Burnham Aug 12 '11 at 2:33