Free-to-Play Games Database

फ़्री
द्वारा Digiwalls Media | अपडेट किया गया a day ago | Gaming
लोकप्रियता

9.8 / 10

लेटेंसी

1,264ms

सेवा का स्तर

99%

Health Check

N/A

सभी चर्चाओं पर वापस जाएं

limit?

How can I make a map with a limit of 10 games?

Rapid account: Coding By Gopal
CodingByGopal Commented 2 years ago

const indexOfLastGameInList = currentPage * gameItemPerPage;
const indexOfFirstGameInList = indexOfLastGameInList - gameItemPerPage;
const currentGameList = results.slice(
indexOfFirstGameInList,
indexOfLastGameInList
);

// then use map

{currentGameList.map((data) => {return <li>{data.xyz}</li>,}

Rapid account: Cpinopacheco 64
cpinopacheco64 Commented 2 years ago

I would like to know the same, I am looking for the option to bring a certain amount of elements. How can that be done?

Rapid account: Frandepaulo 23 Kixps GD Tq U 8
frandepaulo23-kixpsGDTqU8 Commented 3 years ago

I am trying to render in the DOM only 10 games of the more than 400 that are in the api…
some APIs can be assigned something like freetogame.com/api/games?limits=10 or api/games?results=10
does this api have that option?

Rapid account: Digiwalls
digiwalls Commented 3 years ago

What you trying to do exactly?

चर्चा में शामिल हों - नीचे टिप्पणी जोड़ें:

नई टिप्पणियाँ पोस्ट करने के लिए लॉग इन / साइनअप करें