Ben White

Results 2 comments of Ben White

> If case statements implicitly create a scope, I'd expect this to produce a reference error (via fallthrough): > > ```javascript > switch (true) { > case true: > let...

> > The case items themselves should be seen as they are all in one scope. > > This isn't entirely true, since if you put `{ .. }` around...