Closed aleclarson closed 6 years ago
Thoughts?
# use `b` if `a` is truthy, else use `c` let foo = a ? b : c # use `b` if `a` is null, else use `a` let bar = a ?? b
Trying to encourage vertical space instead of horizontal
Thoughts?