A staple of compact code, the ternary operator ?: feels like it's earned a place in any programming language. I use it often; you should use it oft...
For further actions, you may consider blocking this person and/or reporting abuse
Great writeup.
I do love the ternary operator. I can see how others get confused though. In an application where everything is written one way (regardless of the way) and another way is introduced, it will add confusion.
Though if your application's style guide enforces the use of the ternary operator, it becomes idiomatic.
The key to being idiomatic is is consistency. This can be made true even with a nested ternary!
To me, that style with the ternary is a little frustrating because it feels like it's so close to someone embracing a more functional style. It's not that ternary can't exist or be useful in that case, but it just seems like a tease at that point. Like, to take your example and convert it into an admittedly contrived example, it might look something like:
LOL I feel the exact same way. The Ternary feels like an in-between. Somewhere in the middle of imperative and functional.
Today I was actually working on a style guide for a project I'm working on. It looks exactly like the code you created.
It's not quite ready for human consumption, but I think you would find it interesting. Hit me up on Twitter if interested in a sneak peek.
Cheers!
The problem with this is that both
orderCountText
andnoOrderCountText
will be evaluated in either case.Do they have to be functions?
only one function will execute in this case, either the
if
case or theelse
case, but never both.In my version of
ifElse
, they can be values that will be returned or functions to be executed.Yeah, whereas in
condition ? expensiveGet() + 1 : expensiveGet2() - 1
only one expression will be evaluated.Same with
ifElse
Check out Sanctuary's
ifElse
sanctuary.js.org. You can live edit their page to see how it works.I'd love to get some live editing docs page for my stuff too. Pretty neat site.
I see it's actually for threading through the value, just like
tap
:However, for normal conditional use it's error prone, as you've shown in your code. Both expensive gets will run before the condition is even applied to true.
The actual code would be
That's correct,
ifElse
accepts functions. So those functions are only executed when the condition is met.This is still false. Only one will run. Never both.
You can see
logOdd
is never called.In your first example
both run.
Yes you are correct. The expensiveGet method needs to take 2 arguments for it to work the way it is being called in
ifElse
.I have created a working example that you can run.
This example will show that
ifElse
only executes one of the functions.Here is another read up about ternaries explaining why/how they can be great even when being nested: medium.com/javascript-scene/nested...
I agree with with all your points.
But I feel like there's situations where it's arguably clearer than the alternative.
Other commenters have mentioned the functional angle, and that's really it. In many (all?) the languages that have the ternary operator
if
is a statement (rather than an expression). Makeif
an expression and ternary has no place in the world:Note, I say we don't need the ternary because it can be replaced with general purpose binary operators. I'm not suggesting to get rid of the functionality, that'd be crazy-talk.
I've found one good use for the ternary operator: clearly and succinctly transforming a callback into a promise:
But even still, the ternary operator does not pass the Crockford test.
You could still do that without the ternary and in the same space:
No, just... no.
The ternary operator is better than logical operator abuse.
how is making a binary decision operator abuse?
Because what you actually want is an if-then-else path. The ternary operator has been conceived for that. Logical operators are for logical expression.
Sure you can use them to create conditional branching, but that doesn't make that any clearer. It's hiding the broken glass under the rug (i.e., not using the ternary operator for the sake of not using it, not because you're opting for a clearer pattern).
Fair enough regarding clarity, though in that case we could say that the given example is at fault and not how we decide to return the result ;). It's true that rather than check if error is truthy, it'd be nicer to write something like
reject(error) || resolve(data)
. (I know that doesn't make sense for promise resolution, but bear with me as it's just the example we're working with.)Regarding "logical operators are for logical expression", the ternary operator's left hand side expression is already a logical expression by nature. Adding a syntax for deciding whether to go "left or right" that doesn't follow the same rules as any other operator in the language and worse, different from the ternary implementations in other, older languages can add confusion where there doesn't need to be.
All that aside, I love the ternary operator when writing, but during reviews, or walking people through later, what seemed so simple to me at the time of writing is rarely as clear. The logical or's result is immediately clear.
A pattern I also see (specifically in new React developers, I think) is returning null as the right hand operand for the ternary. I think it's a weird case of "the ternary operator is cool and I want my code to be concise". That added layer of "need to actually learn the ternary operator to write it" creates a desire to use and abuse it.
Edit, for clarity and stuff: As with everything in programming there's a time and place for everything. But if your goal is to have a single line, immediate "true or false" result of something, I feel the logical or is made for that. There's a small window where the ternary probably doesn't hurt anything but is ultimately the same as using multiple logical ors. Anything much larger or nested probably calls for actual if/else.
I like the ternary. Like @fnh pointed out, it's the only way of doing direct conditional assignment in most languages. And for the most part, we've conditioned ourselves to how it works.
But I have a hard rule: never nest a ternary. No matter how clever it makes me seem, or how many articles I read on functional programming and why ternaries are awesome, I won't. The stress it puts other programmers (and myself!) through to mentally parse a nested ternary isn't worth it.
Yes, nesting of the second argument, the truth value, can be hideous. Nesting, or better called chaining, of the third argument can be acceptable with good formatting.
You basically just replaced
condition ? if_true : if_false
withcondition && if_true || if_false
- that means that a falsyif_true
will fall through toif_false
.I don't really see the advantage of that solution.
No, because I'm not allowing "falsey" conditions, which I consider a failure in a language.
false
is a distinct value from an unset optional, andtrue
is not the same as an optional with a value.Having hard optional semantics allows this to work. Using truthy and falsey evaluations this fails.
A condition can obviously be false, but I guess that's not what you meant. For the sake of this argument, let's assume that condition
c
is true, valuex
isfalse
andy
is1
; in most languages,c ? x : y
would result infalse
, whereasc && x || y
would result in1
.If I understood you correctly,
c ? false | 1
in leaf would too result in1
, thus breaking the original logic of a ternary operator.No,
c ? false | 1
would evaluate tofalse
in Leaf. The|
operator applies only to optional types, not truthy values.Great post.
As I was reading it, I was just thinking about how messed up programming is.
I personally hate the ternary operator. It's a conditional disguised as an assignment and when I scan code, I often read it wrong. So, we removed it from all our code and created an inspection to make sure it never gets back in.
Totally personal preference here, but an if else is much more readable.
I never even considered all the edge cases you brought up or that it works differently in different languages. Do other programming language developers secretly hate programmers (only half kidding)?
@Blaine I like to think of all the various programming languages as exactly that, languages. Imagine if you will, that C is latin. Its the root of most modern "western" languages (for brevity sake). Each language that sprouts from it has syntax that is similar but more refined and easier to use in particular circumstances that are important to that language. Then within that language itself there are deeper refinements, these are the regional dialects. It's actually quite interesting.
Yes, I'm aware. The research shows that C-like language syntax is basically as hard to learn as random syntax. That's not good. It makes programming harder than it needs to be. And every time I see some crazy-dense and indecipherable code I wonder what we're really doing here. Are we trying to be cryptographers, jerks, or what?
Programming is already cognitively demanding. We should be saving or brain cycles for our programs, not trying to remember all the obscure edge cases of the ternary operator in C.
If...Else statements are flow though. I don't like using them in situations where I'm alternating between expression values. I let the high-level logic usually decide whether I want an if-else or a conditional-operator. If I use the wrong one it will look odd.
That's a fair point. In my code base, the previous programmers used them indiscriminately, which was part of the reason we're got rid of them. I've seen that pattern of usage in open source projects too.
If you used them consistently in the manor you've described, I could get on board with it.
I think the ternary is mostly a symptom of the design decision to distinguish between expressions and statements, which many programming languages share. When you could just assign the value of an if or switch/case, as it is the case for example in Ruby, there would be much less need for a ternary operator and especally to nested tenarys.
When you considered the optional type for Leaf, did you have a type that abides the definition for monadic types in mind (e.g. something like the Maybe type in Haskell), to handle null values more gracefully, or was it more a construct for the sake of a simpler grammar?
I had an optional type, which is what these operations were based on. Optional was an essential part of the language, as nothing was allowed to not contain a value otherwise: all defaults were defined, and there weren't null pointers.
IMO (in JS at least), binary operator use for non-binary are good if you know what you're dealing with.
I took care to write "falsy" and "truthy" because:
Yes, but empty array
[]
is truthy.But you should never care about the number of lines you write. Ninja coder can write this methods in 1 lines ? Whatever, I'll use 10 lines and have a clear code-base.
But in
(condition && b) || c
, ifcondition
were true andb
were false (or zero), it would returnc
. So that's not a correct implementation of a ternary operator.Indeed, that's part of my point. You can do without ternary with some trickery, but best solution is to split it into real
if else
over multiple lines.Noted that this is already commented elsewhere, but your binary conditional operator seems a lot like this logic operator abuse in JS:
And whenever I see the former I rewrite it as the latter (because it is more semantic, not because I am obsessed with removing 2 characters)
(Also, a falsy
positive
would causenegative
to be evaluated and returned)A lot of the same issues you point out could also apply to
if
statements in general, not just the ternary operator. It's an interesting thought, because in other languages there are alternatives to using if statements. SmallTalk booleans were objects which exposed the messagesifTrue
andifFalse
, rather than requiring a specialif
statement. The FP equivalent would be pattern matching, which maps data patterns to functions/values. Assembly has conditional jumps. All of these are conceptually similar in usage -- run this code when this condition is present.Could it be that the deeper problem here is the
if
statement itself? (Since ternary is just an expression + operator form of this.) This is an honest question for discussion, since I useif
at times and it is considered a staple programming construct.I think
if
statements are something separate, assuming the ternary isn't being abused to introduce logic flow into a program.if
statements are about flow, adn there's simply no way to get rid of them. Sure, in many cases we have higher level things, like select, or even dynamic dispatch, but the essential conditional logic persists.Most languages use
if
for flow control so they encourage you to write boolean reductions for your data and to think of your decisions in terms of booleans. Whereas my human brain doesn't tend to actually think in Discrete Logic. Sometimes I even draw truth tables to make sure it will produce the expected result. The problem isn't really with the language feature provided byif
, but perhaps with our overuse of the construct.So I guess the fundamental question is: does using
if
reduce the expressiveness of your solution? And if so, what are the alternatives?When I am writing a guard clause,
if
's expressiveness is probably fine. But when I am making business decisions, usingif
for flow can feel pretty bad at times. As far as the 2nd question, I think really the only alternative to usingif
is to write higher level code so it is not needed. Those implementations will vary based on the problem and paradigm. Examples I've used: union types or shallow inheritance to make discrete data states.As far as the relationship, ternary is just an expression + operator version of
if
. Being an operator makes it more cryptic, but I consider it being an expression to be a good thing. I tend to write in expression-based languages, so in my mind it is the exact same capability asif
. (In F#,if
is an expression and no ternary operator exists.) From that perspective, putting "too much" in the ternary operator feels appropriately bad because it is highlighting problems with expressing solutions in terms of booleans. Whereas the same code with a statement-basedif
may feel more comfortable than it should. Not that I am in favor of ternary. I think your alternative is better. I guess I was just isolating a problem that most people easily identify with ternary, but is less obvious with if. That being the lack of human legibility of boolean-based flow control.This is exactly why I like Python's ternary operator:
The use of English words instead of cryptic symbols reduces the ambiguity.
Python's ordering is backwards. IT breaks the standard if-then logic and chooses then-if wording. I really dislike the Python way of handling this.
That's interesting, I tend to think about conditionals the same way it is in Python, ie "do this thing if something is true otherwise do this other thing", rather than "if something is true do this thing otherwise do this other thing".
It's interesting how different people think differently. :)
First, pretty well all of the Lisp family have a ternary operator ... the 'if' expression. The observation that the true/false branch operatoronly exists in languages with if-statements is apposite. The people at Bell Labs were mathematicians, and probably felt quite comfortable with the idea of expressions with conditional paths. I am fairly sure that that is their intended purpose.
It is easy to write inscrutable code in any language, and many of the examples of cryptic conditionals we encounter are cryptic because they aren't adequately described.
Knuth's whole aim with 'literate programming' was to make everything clear, and if he can make chunks of raw TeX understandable to a novice (he does), then we can certainly make our conditional expressions intelligible.
It is true that we don't NEED the operator, but why do we NEED anything more that machine code? ... It is because, correctly used, these languages and their constructs make things clearer.
... And part of that 'correctly' is adequate commenting.
Oh, I definitely think we need the functionality. I think part of my intent of the article didn't come across. I mean we don't need a ternary operator because we could instead define two binary operators which are more generic, and also fulfill the conditional evaluation expression.
My concern about parsing is strictly due to the ternary syntax. Once we have binary operators it can be parsed, by machine and humans, the same way as other binaries and thus be even easier to understand.
It could be that calling it an operator is simply confusing.
Coffeescript has a
Which makes it look more like an inline if that returns its values from the
if
orelse
block.So, the conditional operator would be more like:
I really like the solution though, it makes so much more sense to have it be made up of binary operators now. It doesn't even make sense to add the conditional operator back in since the
?
and|
are already fully encompassing its use cases.I really dislike the inline
if ... else
forms that some languages have, also including Python. It looks really messy, and more like a flow statement than an expression.As usual, the Adaist is different :-)
Ada (since 2005, I guess) has a "kind of" ternary operator that has some similarity with Ruby. In Ada you use just a "if" construct
X := (if (a > b) then 4 else 5);
If I am not wrong (I am to lazy to start the IDE and try...) you need the parenthesis around the if. I did not check thoroughly, but I think that this prevent the issues with associativity: "if" expressions have no associativity and you need parenthesis to use them. (Ada also force you to use parenthesis in expressions with both "and" and "or," in order to avoid ambiguities).
The nice part is that there is also a "case" expression
X := case day is
when Monday => 3,
When Sunday => 4,
...
end case;
They are very convenient, especially in inline functions.
Speaking of python, there are conditional expressions docs.python.org/2.5/whatsnew/pep-3...
which is, I think, the only valid use case for ternaries: providing initial values based on a condition.
Apart from that a simple if clause to return early does the trick. No need for nesting ternaries.
What if true_value is an optional?
I can't remember what I did in Leaf. Either I triggered a compiler error, or more likely I elided the optional -- you can't have an optional of optional, one was just stripped.
An elision would cause its behavior to deviate from that of a ternary operator, though: if
b
is null/none thentrue ? b | 3
would return 3 whereas the ternary operationtrue ? b : 3
returns null.That is the true strength of the ternary operator: to choose between two paths before evaluating them. All binary operators always have to evaluate one of their operands first.
That is true. And I think for that reason it'd make sense to raise an error if the true_value is an optional. It'd lead to a potential ambiguity in what is desired.
And in Kotlin! Although Kotlin doesn't have a ternary operator.
It has the Elvis Operator
?:
which behaves like C's ternary operator when you omit the middle value... So it's the same as C#'s coallessing operator (??
) but it has a groovier syntax!Actually I like ternary operator a lot, and I really feel it's missing on Kotlin, ever since I've moved from Java.
The way to do it on Kotlin is just annoying to write .
Compare this on Java:
final int t = x>0 ? 0 : 1 ;
with this on Kotlin
val t = if (x>0) 0 else 1
Yes, I feel using the
if ... else
syntax for an expression evaluation is harder to read than? ... :
.