Untitled
unknown
javascript
9 months ago
417 B
17
Indexable
if (true) {
var mesaj = "Ben var’ım!";
}
console.log(mesaj); // çalışır bloktan kaçma özelliği var
if (true) {
let mesaj = "Ben let’im!";
console.log(mesaj);
}
console.log(mesaj); // çalışmaz sadece if yani blok içinde çalışır
if (true) {
const mesaj = "Ben const’um!";
console.log(mesaj);
}
console.log(mesaj); // sadece if içinde ve blok içinde çalışırEditor is loading...
Leave a Comment