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".