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