Hacker News new | ask | show | jobs
by agoandanon 4576 days ago
This article misses WHY certain things are the case, and has several incomplete or incorrectly-explained points.
1 comments

Yeah, the one that got me is "branch on variable declaration", which I believe is actually a special case of the fact that assignment is actually an expression which returns the assigned value; `a = b = c = 42;` works for the same reason.