Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Support $cond and $select in expressions (or termary) #156

Closed
esprehn opened this issue Nov 17, 2010 · 4 comments
Closed

Support $cond and $select in expressions (or termary) #156

esprehn opened this issue Nov 17, 2010 · 4 comments

Comments

@esprehn
Copy link
Contributor

esprehn commented Nov 17, 2010

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.

@IgorMinar
Copy link
Contributor

I don't know. We should look at the Feedback code and compare how this change would affect it, vs supporting a true ternary operator.

Without seeing the effects, I'd lean towards the ternary operator instead of hacky functions.

@IgorMinar
Copy link
Contributor

ternary operator support RFE: #719

@davispw
Copy link

davispw commented Oct 30, 2012

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.

@petebacondarwin
Copy link
Contributor

Closing. I think the consensus is that the ternary operator would be more suitable - use #719 for this discussion.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants