Rora,
function makeCounter() {
var currentCount = 1;
return function() {
return currentCount++;
};
}
var counter = makeCounter();
alert (typeof counter);
alert( counter() );// выводит 1
alert( counter() );// выводит 2
alert( counter() );// выводит 3