Answers for "stackoverflow.com/questions/3216013/get-the-last-item-in-an-array?"

0

stackoverflow.com/questions/3216013/get-the-last-item-in-an-array?

const last = a => a[a.length - 1];
last([3, 2, 1, 5]) // return 5
Posted by: Guest on November-16-2020
0

stackoverflow.com/questions/3216013/get-the-last-item-in-an-array?

const last = a => a[a.length - 1];
Posted by: Guest on November-16-2020

Code answers related to "stackoverflow.com/questions/3216013/get-the-last-item-in-an-array?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language