-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
38 lines (34 loc) · 837 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
function loop(value, target, callback){
let number = value;
for(let index = 0; index < target; index++){
callback(number);
number++
}
}
function loopStep(value, target, step, callback){
let number = value;
for(let index = 0; index < target; index++){
callback(number);
number += step
}
}
function decrementLoop(value, target, callback){
let number = value;
for(let index = number; index > target; index--){
number--
callback(number);
}
}
function decrementStep(value, target, step, callback){
let number = value;
for(let index = number; index > target; index--){
callback(number);
number -= step;
}
}
module.exports = {
loop,
loopStep,
decrementLoop,
decrementStep
}