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