TDZ (Temporal Dead Zone)
new Car('red'); // Does it work? (no; ReferenceError)
class Car {
constructor(color) {
this.color = color;
}
}greet('World'); // Does it work? (yes)
function greet(who) {
return `Hello, ${who}!`;
} Links
Last updated