How do I make the same API request multibul times without duplicates?
Advertisements I am trying to randomly generate a Pokemon team using PokeAPI and Javascrip, Ive tried a few things but it doesnt seem to be working, this is what I have so far: https://codepen.io/Alyssamc17/pen/dyqqeMp const nameElem = document.getElementById("name"); const pokemonImage = document.getElementById(‘pokemon’) const heightElem = document.getElementById("height"); const weightElem = document.getElementById("weight"); const button = document.querySelector(".button"); button.addEventListener(‘click’,… Read More How do I make the same API request multibul times without duplicates?