Skip to content

Instantly share code, notes, and snippets.

@Phongtlam
Last active November 23, 2020 03:19
Show Gist options
  • Save Phongtlam/11588bb12aa31db5482c1de46ed6d336 to your computer and use it in GitHub Desktop.
Save Phongtlam/11588bb12aa31db5482c1de46ed6d336 to your computer and use it in GitHub Desktop.
recycleDOM
const recycleDOM = firstIndex => {
for (let i = 0; i < listSize; i++) {
const tile = document.querySelector("#cat-tile-" + i);
tile.firstElementChild.innerText = DB[i + firstIndex].title;
tile.lastChild.setAttribute("src", DB[i + firstIndex].imgSrc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment