fix(curriculum): typo in statistics step 29 (#55054)

This commit is contained in:
Supravisor
2024-06-03 17:40:13 +12:00
committed by GitHub
parent 25f87a2cc4
commit 0fb59f138c

View File

@@ -21,7 +21,7 @@ numbersArr.forEach((el) => {
});
```
Check if the current number is already in the `counts` object. If it is, incremented by `1`. If it is not, set it to `1`.
Check if the current number is already in the `counts` object. If it is, increment it by `1`. If it is not, set it to `1`.
Resulting object. The keys are the numbers from the array and the values are the number of times each number appears in the list: