function makeCounter() { let count = 0; return function() { return count++; } } makeCounter() alert(makeCounter()) // alerts the function itself