Hacker News new | ask | show | jobs
by taf2 4181 days ago
It seems to me typeof in the described case should return undefined.
1 comments

typeof is never being invoked, so it can't return anything.

The rules of let are that any reference to the variable before the let declaration (the "temporal dead zone"), it's a reference error. So the reference error is being thrown before typeof is invoked.