You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ternary operator currently only supports the true case (?), but doesn't support an "else" case (:), so it's not really ternary. An operator should be implemented which returns the left-hand value unless it is nil, in which case it returns the right-hand value.
The text was updated successfully, but these errors were encountered:
The ternary operator currently only supports the true case (
?
), but doesn't support an "else" case (:
), so it's not really ternary. An operator should be implemented which returns the left-hand value unless it is nil, in which case it returns the right-hand value.The text was updated successfully, but these errors were encountered: