I am trying to decide if want to use Coffeescript or avoid it :)
This is one weird behaviour I had just with this simple function:
equals = (lhs, rhs) -> lhs == rhs ? "IT IS TRUE" : "IT IS FALSE"
alert(equals(1, 2))
This function returns false, not "IT IS FALSE" as expected
Any ideas? thanks