Ternary operation in CoffeeScript

前端 未结 7 1663
生来不讨喜
生来不讨喜 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条回答
  •  猫巷女王i
    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.

提交回复
热议问题