I was looking over one of the minified js files generated by closure. I found that wherever I'm checking for equality between a variable and string like,

a == "13" || a == "40"

closure replaces it with

"13" == a || "40" == a

Why is this modification done? Is there some performance advantage here?

link|improve this question

38% accept rate
feedback

2 Answers

up vote 3 down vote accepted

As a general concept, this is to avoid programmer error. If you were modifying the code manually and put the variable first and constant second, it's possible to accidentally type:

a == '40' || a = '13'

Oops! We just set a to '13' instead of comparing. By putting the constant on the left, we avoid this possibility:

'40' == a || '13' = a

Will throw an exception because you can't put a constant string on the left hand of an assignment operation.

So in some schools of thought (including my own), it's best practice to always put the constant on the left when doing equality comparison against a constant. Looks like closure follows that practice.

These are called "yoda conditions".

link|improve this answer
That doesn't explain why a compressor would do it though. OT: Did they actually delete the thread on Yoda conditions?! – Pumbaa80 Feb 13 at 7:13
The compressor uses best practices wherever possible, just because it can. (Offchance that someone edits the minified version maybe?) – Ben Lee Feb 13 at 7:17
Also, I wasn't aware of that thread about yoda conditions. I've just heard this described that way before. – Ben Lee Feb 13 at 7:18
In the docs here (code.google.com/speed/articles/compressing-javascript.html), they mention that in addition to minification the compiler is opinionated about code practices and it can even warn you about things. In this case, it looks like it just silently converts these comparisons to yoda format. – Ben Lee Feb 13 at 7:20
@Pumbaa80, I posted a meta topic asking if it's possible to revive that thread you pointed out. meta.stackoverflow.com/questions/122154/… – Ben Lee Feb 13 at 7:47
feedback

This is done as for a minor gzip compression advantage. If you have "x == 1" and "1 == x" the compiler switches it to "1 == x" in both cases and you get more regular code that compresses better. The win is so minor, that I've considered deleting the code and saving the cpu cycles, but it is on for now. It has nothing to do with preventing programmer errors as it will never switch "x = 2" into "2 = x" as that would change the meaning of the program.

link|improve this answer
Makes sense. OP (@user843241) should change this to accepted answer. I'd delete my own answer but I don't know if that would be kosher. Although just for the record, Yoda Conditions never say anything about the order of operands on assignment; of course you would never change "x = 2" into "2 = x". Yoda Conditions are about order of operands on equality comparison only. – Ben Lee Feb 15 at 16:17
feedback

Your Answer

 
or
required, but never shown

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