Gary Guo (2015-01-02T02:47:46.000Z)
It seems that in JSFiddle running on Firefox, let declaration is disabled. So this cannot explain.

From: waldron.rick at gmail.com
Date: Wed, 31 Dec 2014 21:36:46 +0000
Subject: Re: Can `let`, `static` and `yield` still be used as Identifier?
To: alex at kocharin.ru; erik.arvidsson at gmail.com; nbdd0121 at hotmail.com; es-discuss at mozilla.org
  let = 1;  console.log(let); // 1
  var let = 1;  console.log(let); // 1
  let let = 1; // SyntaxError 		 	   		  
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20150102/09e82ca6/attachment.html>
d at domenic.me (2015-01-12T21:21:42.837Z)
It seems that in JSFiddle running on Firefox, let declaration is disabled. So this cannot explain.