Javascript comes with a nice method on `Array` objects called `forEach`, it takes a function as an argument and applies that function to eacy item in the array sequentially. It’s Javascript’s version of a for-each loop, allowing you to write code like this: for(var i = 0; i < ar.length; i++) { alert(ar[i]); } or, for theContinue reading “Async Foreach in Javascript”