en.javascript.info/1-js/8-more-functions/04-function-object/2-counter-inc-dec/_js.view/solution.js
Ilya Kantor 3defacc09d up
2016-11-12 19:38:58 +03:00

13 lines
189 B
JavaScript

function makeCounter() {
let count = 0;
function counter() {
return count++;
}
counter.set = value => count = value;
counter.decrease = () => count--;
return counter;
}