Allen Wirfs-Brock (2013-11-13T23:49:05.000Z)
domenic at domenicdenicola.com (2013-11-17T18:15:26.900Z)
On Nov 13, 2013, at 3:41 PM, Ian Halliday wrote: > Wait, so is there no variable shadowing allowed then? this is saying that things like the following are illegal: ```js {var x; let x; } ``` But shadowing, like the following is fine: ```js var x; {let x; } ```