I currently have this object of levels and their exp requirement.
const levels = {
1: 50,
2: 75,
3: 125,
4: 200,
5: 350,
6: 500,
7: 1000,
8: 1250,
9: 2500,
10: 5000,
11: 7500,
12: 10000,
13: 15000,
14: 30000,
15: 50000,
16: 75000,
17: 100000,
18: 200000,
19: 300000,
20: 400000,
21: 500000,
22: 750000,
23: 1000000,
24: 2500000,
25: 5000000,
};
I also have the amount of exp one user has. How would I find the closest number to it from those object values and get the level of the user?
I would go for a recursive approach here: