1const a = 99; 2setTimeout(() => { 3 if (false) { 4 const b = 101; 5 } else if (false) { 6 const c = 102; 7 } 8}, 10); 9