Appearance
Merging collapsible if statements increases the code's readability.
if (x != undefined) { if (y === 2) { // ... } }
if (x != undefined && y === 2) { // ... }