Array filtering with Array.prototype.filter()

Easy
1
30.0% Acceptance

In this lab, you will work with the Array.prototype.filter() method to extract active users from an array of user objects. The lab setup includes creating and exporting an array of user objects in users.js, and implementing filter logic in app.js to get only the active users. Remember to use ESM syntax for importing and exporting in both users.js and app.js.