Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これをおしゃれなワンライナーに変えることはできますか?
thing = thing2 / 32 * 100 * 100 thing = 0 unless thing
残念ながら、coffeescript は三項演算子をサポートしていません。しかし、次のように書くことができます:
@zoomGlobal = if @position.ratio then @position.ratio / 32 * 100 * 100 else 0
または
@zoomGlobal = @position.ratio / 32 * 100 * 100 || @zoomGlobal
ここに例