S
Size: a a a
S
S
j
РА
for(let item of arr) {
await client.readStories(item).then((count) => {
console.log(count);
});
await setTimeout(() => { console.log(); }, 5000);
};
РА
j
for(let item of arr) {
await client.readStories(item).then((count) => {
console.log(count);
});
await setTimeout(() => { console.log(); }, 5000);
};
Н
Н
S
S
РА
async function sleep(ts){
return new Promise((resolve, reject) =>{
setTimeout(()=>{
resolve(true);
}, ts);
})
}
S
j
j
S
S
S
j
j