Skip to content

Commit f4db27c

Browse files
Create: 2620-counter.js
1 parent 2effbe1 commit f4db27c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

javascript/2620-counter.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* @param {number} n
3+
* @return {Function} counter
4+
*/
5+
var createCounter = function(n) {
6+
return function() {
7+
return n++;
8+
};
9+
};
10+
11+
/**
12+
* const counter = createCounter(10)
13+
* counter() // 10
14+
* counter() // 11
15+
* counter() // 12
16+
*

0 commit comments

Comments
 (0)