Return the Last Element in an Array

Published by Alex Golubov in

Create a function that accepts an array of numbers and returns the last number in the array.

Examples

getLastItem([1, 2, 3], 3) ➞ 3

getLastItem([0], 1) ➞ 0

getLastItem([-1, -3], 2) ➞ -3

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
Watch a quick demo on how Edabit works.