6 lines
92 B
CoffeeScript
6 lines
92 B
CoffeeScript
if n == 1
|
|
console.log "one"
|
|
else if n == 2
|
|
console.log "two"
|
|
else
|
|
console.log "other"
|