Oh that's funny. I only (rather belatedly) realized that
class Foo { }
and
let Foo = class Foo { };
did _exactly_ the same thing (not just nearly the same thing) like last week sometime. 
-
-
Thanks. Twitter will use this to make your timeline better. UndoUndo
-
-
-
Perfect! I had that problem in my V8 inspector example. Glad to see the issue has been solved!
Thanks. Twitter will use this to make your timeline better. UndoUndo
-
Loading seems to be taking a while.
Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.
JavaScript, HTML, CSS, HTTP, performance, security, Bash, Unicode, i18n, macOS.
Fun fact: this works with `class` as well since V8 desugars class declarations of the form `class C { … }` to `let C = class C { … }` under the hood.