John Lenz (2014-01-30T05:57:20.000Z)
I have some old notes that says that "let" can't be used in some context
where a var could like:

  if (a) let x = 2;

In my perusal of the spec I don't see that this is the case now.  Can
someone confirm that for me?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140129/70bd56bc/attachment.html>
domenic at domenicdenicola.com (2014-02-04T21:23:26.951Z)
I have some old notes that says that `let` can't be used in some context
where a `var` could like:

```js
if (a) let x = 2;
```

In my perusal of the spec I don't see that this is the case now.  Can
someone confirm that for me?