АР
Size: a a a
АР
Т
Т
АР
CM
Т
y
Т
D
АЧ
RR
А
L
ДБ
MR
С
IL
ДБ
А
function makeCounter() {Почему counter увеличивается ?
let count = 0;
return function() {
return count++; // есть доступ к внешней переменной "count"
};
}
let counter = makeCounter();
alert( counter() ); // 0
alert( counter() ); // 1
alert( counter() ); // 2
АО