Rick Waldron (2014-12-31T21:36:46.000Z)
dignifiedquire at gmail.com (2015-01-08T16:32:01.303Z)
> On Wed Dec 31 2014 at 2:45:57 PM Alex Kocharin <alex at kocharin.ru> wrote: > > Firefox does parse `let=1` as illegal, > Under what circumstance? All of these function according to the spec: ```js let = 1; console.log(let); // 1 var let = 1; console.log(let); // 1 let let = 1; // SyntaxError ``` (http://jsfiddle.net/rwaldron/L5kbtup6/)