#summary Optimization of certain if blocks with return statements. = Introduction = `if (x) return 1; else return 2;` => `return b ? 1 : 2;` `if (b) return; else { ... }` => `if (b) ; else { ... }` = Performance Impact = Mostly a wash across all browsers.