up vote 40 down vote favorite
8
share [g+] share [fb]

I cant seem to wrap my head around the first part of this code ( += ) in combination with the ternary operator.

h.className += h.className ? ' error' : 'error'

The way i think this code works is as following.

h.className = h.className + h.className ? ' error' : 'error'

But that isn't correct because that gives a error in my console :p.

So my question is how should i interpet this code correctly?

link|improve this question

feedback

6 Answers

up vote 45 down vote accepted
h.className = h.className + (h.className ? ' error' : 'error')

You want the operator to work for h.className, better be specific about it.
Of course, no harm should come from h.className += ' error', but that's another matter.

Also, note that + has precedence over the ternary operator: JavaScript Operator Precedence

link|improve this answer
1  
+1 for beating me to the correct answer – David Hedlund Nov 24 '09 at 9:35
2  
I think it should be noted that, while no harm should could from h.className += ' error', it also leaves a blank space at the beginning of the string if it was initially empty. I believe the point of the ternary operation is to produce a clean-looking string. – JMTyler Jun 21 '11 at 22:15
@JMTyler - That's exactly what I was indicating - If it's all done just to keep a space from the start, I doesn't worth it. (edge case include exact jQuery or XPath selectors). Anyway, thanks. – Kobi Jun 22 '11 at 4:44
feedback

Think of it this way:

<variable> = <expression> ? <true clause> : <false clause>

The way the statement gets executed is basically as follows:

  1. Does <expression> evaluate to true, or does it evaluate to false?
  2. If <expression> evaluates to true, then the value of <true clause> is assigned to <variable>, <false clause> is ignored, and the next statement is executed.
  3. If <expression> evaluates to false, then <true clause> is ignored and the value of <false clause> is assigned to <variable>.

The important thing to realise with the ternary operator in this and other languages is that whatever code is in should produce a boolean result when evaluated: either true or false.

In the case of your example replace "assigned to" in my explanation with "added to", or similar for whichever shorthand arithmetic you are using, if any.

link|improve this answer
4  
+1 perfect explanation – jyoseph Jan 21 '11 at 6:17
feedback

The += does what you want, but in the ternary statement at the right hand of it, it checks if h.className is falsey, which it would be if it was undefined. If it's truthy (i.e. if a class name is already specified), then error is added with a space (i.e. adding a new class), otherwise it's added without the space.

The code could be rewritten as you suggest, but you need to specify that h.className is to be used for truthiness-comparison, rather than for using its actual value, in the ternary operator, so make sure you don't bother with the concatenation of values at the same time as doing your ternary operation:

h.className = h.className + (h.className ? ' error' : 'error');
link|improve this answer
Falsey, huh? ;) – Justin Johnson Nov 24 '09 at 9:36
4  
well yeah, undefined isn't false it's just treated as though it was – David Hedlund Nov 24 '09 at 10:15
feedback

The right hand side of the = operator is evaluated left to right. So,

g.className = h.className + h.className ? ' error' : 'error';`

is equivalent to

h.className = (h.className + h.className) ? ' error' : 'error';

To be equivalent to

h.className += h.className ? ' error' : 'error';

you have to separate the ternary statement in parenthesis

h.className = h.className + (h.className ? ' error' : 'error');
link|improve this answer
feedback
if (h.className) {
    h.className = h.className + ' error';
} else {
    h.className = h.className + 'error';
}

should be equivalent of:

h.className += h.className ? ' error' : 'error';
link|improve this answer
feedback

I would like to pick expln of wayne :

<variable> = <expression> ? <true clause> : <false clause>

case 1: h.className += h.className ? ' error' : 'error' ( Works, keeps on appending 'error' )

case 2: h.className = h.className + h.className ? ' error' : 'error' ( always o/ps 'error' only)

Expln: In the above code, h.className + h.className => considered as expression not the 1st h.className for accumulation value & left of + as the expression for ternary. So true clause is executed.

to make it work as case 2 : You need to define the precedence by using brackets

h.className = h.className + (h.className ? ' error' : 'error') 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.