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.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.
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!