PS
Size: a a a
PS
PS
PS
PS
N
N
N
PS
function iter(arr, i)
{
if (i >= arr.length)
return null;
var xhr = ...;
...;
xhr.onreadystatechange = function ()
{
if (xhr.readyState == 4 && xhr.status == 200)
{
...
return iter(arr, i + 1);
}
}
}
PS
IS
N
N
N
N
N
R
М
R
М