264 B
264 B
title, tags
| title | tags |
|---|---|
| last | array,beginner |
Returns the last element in an array.
Use arr.length - 1 to compute the index of the last element of the given array and returning it.
const last = arr => arr[arr.length - 1];
last([1, 2, 3]); // 3