Find Items from the end of the JavaScript Array using at, findLast and findLastIndex

InstructorTomasz Ducin

Share this video with your friends

Send Tweet

Finding elements starting from the end of an array has gotten a lot easier with the introduction of the at, findLast, and findLastIndex methods!

With at you no longer need to remember to access the end of the array like array[array.length - 1] trick. You can just call .at[-1] to get the last element!

findLast and findLastIndex work the same as their find and findIndex counterparts. But, they work backwards from the end of the array. This is useful if you know what you're accessing is going to be closer to the end.