Course · Section 10: A Closer Look at Functions · Lecture 137: First-Class and Higher-Order Functions
Implement `evenSquares(nums)` returning the squares of just the even numbers, using `filter` then `map`.
+ 1 hidden test run on Submit.
Chaining filter then map keeps only evens and squares them, a common transform pipeline.
Run your code to see results.