Here are two examples:
console.log(x); let x = 4;
throws Reference Error x is not defined;
{ console.log(y); let y = 3; }