I am grabbing content from multiple urls. Fetch api uses promises all over.
So my code for one requests looks like this
fetch(url).then((response)=>response.text()).then(function(html) { //stuff });
now i have array of urls and multiple calls will be made how do i know if all calls have finished.
i tried using Promise.all
but if you see there are two promises for every request. Is there a better way, also Promise.all support is not that good either.