Course · Section 17: Modern JavaScript Development: Modules, Tooling, and Functional · Lecture 294: Declarative and Functional JavaScript Principles
Implement `activeNames(users)` returning the names of users whose `active` is true, using `filter` then `map`.
+ 1 hidden test run on Submit.
Filtering the active users then mapping to names reads as a clear data transformation.
Run your code to see results.