Are loops synchronous or asynchronous in JavaScript? (for, while, etc)
Supposing I have:
for(let i=0; i<10; i++){ // A (nested stuff...) } //
for(const elment of arrayElements) { await yourFunc(elment) await yourOtherFunc('somePatameter') }