function testLet() {
  let x = 10;
  if (true) {
    let x = 20; // متغیر x فقط درون این بلوک معتبر است
    console.log(x); // خروجی: 20
  }
  console.log(x); // خروجی: 10
}
testLet();