sonsoru.js
unknown
javascript
10 months ago
267 B
15
Indexable
let x = "Global";
function disFonksiyon() {
let x = "Fonksiyon";
if (true) {
let x = "Blok";
console.log("İç bloktaki x:", x);
}
console.log("Fonksiyon içindeki x:", x);
}
disFonksiyon();
console.log("Globaldeki x:", x);
Editor is loading...
Leave a Comment