Ternary operation in CoffeeScript

前端 未结 7 1451
生来不讨喜
生来不讨喜 2020-12-04 06:56

I need to set value to a that depends on a condition.

What is the shortest way to do this with CoffeeScript?

E.g. this is how I\'d do it in Java

相关标签:
7条回答
  • 2020-12-04 07:37

    CoffeeScript has no ternary operator. That's what the docs say.

    You can still use a syntax like

    a = true then 5 else 10
    

    It's way much clearer.

    0 讨论(0)
提交回复
热议问题