Correct: `Array.from()` (it’s a static method) Incorrect: `Array.join()` (doesn’t exist; it’s a prototype method) This patch uses the common `#` syntax to denote `.prototype.`.
14 lines
342 B
Markdown
14 lines
342 B
Markdown
### countOccurrences
|
|
|
|
Counts the occurrences of a value in an array.
|
|
|
|
Use `Array.prototype.reduce()` to increment a counter each time you encounter the specific value inside the array.
|
|
|
|
```js
|
|
const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a), 0);
|
|
```
|
|
|
|
```js
|
|
countOccurrences([1, 1, 2, 1, 2, 3], 1); // 3
|
|
```
|