Uzyskaj najlepsze obiekty n z listy węzłów JS

Just try this to get first n elements from list:

const slicedList = list.slice(0, n);
Tomer Mantzuri