Untitled

 avatar
unknown
javascript
9 months ago
176 B
16
Indexable
function sayacOlustur() {
  let sayi = 0;
  return function() {
    sayi++;
    console.log(sayi);
  };
}
const sayaci = sayacOlustur();
sayaci();
sayaci();
sayaci();
Editor is loading...
Leave a Comment