Technik Informatyk
Egzamin zawodowy technik informatyk
Kwalifikacja
Przedmiot
Kategoria
Kurs: JavaScript
var x = 1; if (true) { var x = 3; } console.log(x);
let x = 1; if (true) { let x = 2; } console.log(x);