JavaScript Tip 💡: Use the Array "at()" method to access last Array element easily! The "at()" method in JavaScript provides a simpler way to access elements in an array, especially the last one. Traditionally, getting the last element required using arr[arr.length - 1], but .at(-1) now handles this directly and more cleanly. With "at()", positive indices retrieve elements from the start, while negative indices count backward from the end. This makes .at(-1) a straightforward and readable alternative for accessing the last item in an array. Hope this helps ✅️ Do Like 👍 & Repost 🔄 #html #css #javascript #typescript #react
Really usefull tip. Thanks for sharing it.
One of those tiny JS upgrades that quietly improves code quality.
nice tip! worth noting that .at() also works on strings and TypedArrays, not just regular arrays. small method, surprisingly versatile (:
Nice!! Thanks for sharing!!
It is amazing how much mental overhead is saved by such a small method. Dropping [arr.length - 1] for .at(-1) instantly communicates intent without the clutter. Small refactors like this go a long way in keeping the UI layer clean and predictable.
Nice post, thank you for sharing :)
Good post 👏 Thanks for sharing!
Why don't you use console.log(array[-1]);