Untitled

 avatar
unknown
javascript
10 months ago
265 B
12
Indexable
let x = "Global";

function birinciFonksiyon() {
  let x = "Birinci Fonksiyon";
  
  if (true) {
    let x = "İç Blok";
    console.log(x); // İç Blok
  }
  
  console.log(x); // Birinci Fonksiyon
}

birinciFonksiyon();
console.log(x); // Global
Editor is loading...
Leave a Comment