Michael Zhou (2014-06-12T19:50:39.000Z)
In other words, is
for (let i = 0; i < 10; i++) {
   let i;
}

legal? I feel it is, but I'm not sure if the specs has made that clear. 
Thanks!
domenic at domenicdenicola.com (2014-06-19T20:53:49.640Z)
In other words, is

```js
for (let i = 0; i < 10; i++) {
   let i;
}
```

legal? I feel it is, but I'm not sure if the specs has made that clear.