Frontend Interview Prep
Home
← Back to Phase 1: Fundamentals
Array.prototype.filter
Phase 1: Fundamentals • Module 3: Array Methods
Premium
Easy
8.41k completed
Description
Implement the Array.prototype.filter() method
Your Solution
Reset
/** * Array.prototype.filter * * Implement the Array.prototype.filter() method */ function solution() { // Your implementation here return; } module.exports = solution;
Run Tests
Submit
Show Solution
← Array.prototype.reduce
Array.prototype.map →