Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 210 Bytes

4.33.md

File metadata and controls

9 lines (5 loc) · 210 Bytes

The expression

sameValue ? ++x, ++y : --x, --y

is the same as

(sameValue ? (++x, ++y) : --x), --y

Then it will be easy to notice that whatever sameValue evaluated, --y will always be evaluated.