Course · Section 11: Working With Arrays · Lecture 156: Data Transformations: map, filter, reduce
Implement `countWhere(nums, threshold)` returning how many numbers are strictly greater than `threshold`.
+ 1 hidden test run on Submit.
filter on n > threshold then length counts the qualifying values.
Run your code to see results.