šŸ“• Build AI Agents using LangGraph.js is now out!

Using the new array.at() method

There is a new array method on the block. It's array.at() and the main difference vs the normal square brackets access syntax is the support for the negative indexes.

Let's consider the following array:

const legumes = [
    "beans", 
    "peanuts", 
    "clover",
    "lentils"
]

At a first glace [] and at() will do the same thing:

legumes[0] // "beans"
legumes.at(0) // "beans"

But while legumes[-1] will end up in returning undefined the legumes.at(-1) will return "lentils".

legumes[-1] // undefined
legumes.at(-1) // "lentils"

With the classic square brackets syntax, we will need to use a trick like the following to access the last element in the array:

legumes[legumes.length - 1] // lentils

The negative indexes in the at() method will give us a more natural way to access elements at the end of the array:

legumes.at(-2) // "clover"
legumes.at(-3) // "peanuts"

Keep in mind that for the moment Safari does not yet support negative indexes.

šŸ“– Build a full trivia game app with LangChain

Learn by doing with this FREE ebook! This 35-page guide walks you through every step of building your first fully functional AI-powered app using JavaScript and LangChain.js

šŸ“– Build a full trivia game app with LangChain

Learn by doing with this FREE ebook! This 35-page guide walks you through every step of building your first fully functional AI-powered app using JavaScript and LangChain.js


Leave a Reply

Your email address will not be published. Required fields are marked *