Obtenha o último item no mapa JavaScript
row.map((rank, i, arr) => {
if (arr.length - 1 === i) {
// last one
} else {
// not last one
}
});
Poised Panther