Цикл JavaScript последний индекс

for (const [i, value] of arr.entries()) {
    if (i === arr.length - 1) {
        // do your thing
    }
}
Lokesh003Coding