I bumped into a few statements from people that "let blocks and let expressions are obsolete" in SpiderMonkey, while there's very little information about it. I'm wondering what does this exactly mean? Isn't the "let" statement a popular new feature in ES6?
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features
https://bugzilla.mozilla.org/show_bug.cgi?id=1023609
What's the difference between using "let" and "var" to declare a variable in JavaScript?