Skip to content

Commit da37dc2

Browse files
Create: 2665-counter-ii.js
1 parent 2effbe1 commit da37dc2

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

javascript/2665-counter-ii.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
* @param {integer} init
3+
* @return { increment: Function, decrement: Function, reset: Function }
4+
*/
5+
var createCounter = function(init) {
6+
let count = init;
7+
8+
increment = () => ++count;
9+
10+
decrement = () => --count;
11+
12+
reset = () => {
13+
count = init;
14+
return count;
15+
}
16+
17+
return {
18+
increment,
19+
decrement,
20+
reset
21+
}
22+
};
23+
24+
/**
25+
* const counter = createCounter(5)
26+
* counter.increment(); // 6
27+
* counter.reset(); // 5
28+
* counter.decrement(); // 4
29+
*/

0 commit comments

Comments
 (0)