function makeCounter() { let n = 0; return () => ++n; } const c = makeCounter(); c(); c(); console.log(c());