fancylettuce

Results 1 comments of fancylettuce

Maybe this will lead us in the right direction. const tweet = (keyword) => { getGifs(keyword) .then(gifs => { const randomGif = gifs[Math.floor(Math.random() * gifs.length)]; const tweet = `${keyword} ${randomGif.url}`;...