⛔temporal dead zone
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
{
// TDZ (for `a`) starts
const f = () => console.log(a); // - OK: `a` hasn't been actually referenced.
let a = 3; // TDZ (for `a`) ends.
f(); // OK: `a` called outside TDZ.
}