← Back to challenges

Retrieve the Last N Elements

JavaScriptHardarrayslanguage_fundamentals

Instructions

Write a function that retrieves the last n elements from an array.

Examples

last([1, 2, 3, 4, 5], 1) ➞ [5]

last([4, 3, 9, 9, 7, 6], 3) ➞ [9, 7, 6]

last([1, 2, 3, 4, 5], 7) ➞ "invalid"

last([1, 2, 3, 4, 5], 0) ➞ []

Notes

  • Return "invalid" if n exceeds the length of the array.
  • Return an empty array if n == 0.
javascript
Loading editor…
to run
Walks through the solution with reasoning and edge cases.
Next: Multi-division