Michael Zhou (2014-06-16T18:29:34.000Z)
Thanks for the clarification, one detail about the order between 
incrementing and setting $$lastIteration_i:

{
    let i = $$lastIteration_i;   //create and initialize per iteration i
    if (!(i<10)) break;
   {
       let i;
    }
*    i++;
    $$lastIteration_i = i;*
}

Should it be*
$$lastIteration_i = i;
i++;

*instead, given what the spec says?

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140616/71d8f1d0/attachment.html>
domenic at domenicdenicola.com (2014-06-19T20:54:49.368Z)
Thanks for the clarification, one detail about the order between 
incrementing and setting $$lastIteration_i:

```js
{
    let i = $$lastIteration_i;   //create and initialize per iteration i
    if (!(i<10)) break;
   {
       let i;
    }
*    i++;
    $$lastIteration_i = i;*
}
```

Should it be*

```js
$$lastIteration_i = i;
i++;
```

instead, given what the spec says?