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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Often you want to choose two things based on a predicate but there's no ternary operator so people just hack around it with {true: 'value1', false: 'value2'}[!!checkFunction()] which is far less readable.
Supporting a true ternary operator makes conditional function calls a little too easy, but supporting function forms of the operations means you get the same end result without that problem.
The text was updated successfully, but these errors were encountered:
Often this will work instead: "test && val1 || val2", which is equivalent if val1 is not falsy and sometimes what you want anyway. With this, I have gotten by without ternary expressions or hacks.
Often you want to choose two things based on a predicate but there's no ternary operator so people just hack around it with {true: 'value1', false: 'value2'}[!!checkFunction()] which is far less readable.
Support:
$cond(checkFunction(), 'value1', 'value2')
$select(keyFunction(), {key1:'value1', key2: 'value2'})
Supporting a true ternary operator makes conditional function calls a little too easy, but supporting function forms of the operations means you get the same end result without that problem.
The text was updated successfully, but these errors were encountered: