Ruby Ternary Operator
## Ternary Operator x = 1 ? 2 : 3 puts x # >> 2 puts (x.nil? ? "pop" : "bar") # >> "bar"