Untitled

 avatar
unknown
javascript
10 months ago
224 B
15
Indexable
let x = 3;

function global() {
    let x = "3";

    if (true) {
        let x = 3;
        console.log("Block Scope: ", x);
    }
    console.log("Fonksiyon Scope", x);
}

global();
console.log("Global: ", x);
Editor is loading...
Leave a Comment