Y
Hacker News
new
|
ask
|
show
|
jobs
by
spankalee
34 days ago
They shouldn't add the ternary operator, it keeps `?` from being usable on it's own for safe navigation and requires the ugly `?.` operator, like `a?.[b]` or `f?.()` instead of `a?[b]` or `f?()`.
1 comments
orphea
34 days ago
Yep. This is awful:
obj?.:method(…)
link