I need to set value to a that depends on a condition.
a
What is the shortest way to do this with CoffeeScript?
E.g. this is how I\'d do it in Java
Multiline version (e.g. if you need to add comment after each line):
a = if b # a depends on b then 5 # b is true else 10 # b is false