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