A while back, I built a utility script to process thousands of items with an async function. I thought slapping await inside a for() loop would do the trick. Spoiler: it didn’t!
That simple mistake taught me a big lesson about how await, for, map, an...