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
Originally I thought the precedence should be between the Logical OR (… || …) and the Conditional (… ? … : …) as it would seem very wrong if #? || true would translate to (x => x) || true or #? ? ? : ? would translate to (x,y,z) => x ? y : z... (ternary operator discussion: #2)
But now I think that actually makes sense, so it should have the precedence of 3.5 (right above assignment). What are your thoughts?
The text was updated successfully, but these errors were encountered:
Originally I thought the precedence should be between the Logical OR (… || …) and the Conditional (… ? … : …) as it would seem very wrong if
#? || true
would translate to(x => x) || true
or#? ? ? : ?
would translate to(x,y,z) => x ? y : z
... (ternary operator discussion: #2)But now I think that actually makes sense, so it should have the precedence of 3.5 (right above assignment). What are your thoughts?
The text was updated successfully, but these errors were encountered: