I have just started working with the Twitch TV API project but I am finding it difficult to display all the ‘streamers’. I know I am missing something in this code, but is my way of thinking correct?
Could anyone please help me?
inside the forEach, so you are only going to get the last object each time, because you set output to a blank string before you concatenate the current object. You need to move the output = ‘’; to before the forEach.