NF
Size: a a a
NF
S
S
NF
R
R
R
..
NF
S
S
S
S
const urls = [];
const responses = [];
nextRequest = () => {
const url = urls.pop();
fetch(url)
.then((res) => {
responses.push(res)
nextRequest();
})
}
for(let i = 0; i < 200; i++) {
nextRequest();
}
S
S
S
NF
S
И
В