Skip to content

Instantly share code, notes, and snippets.

View MahmudHasanCSE's full-sized avatar
🎯
Focusing

Hasan MahmudHasanCSE

🎯
Focusing
View GitHub Profile

Do not use forEach with async-await

TLDR: Use for...of instead of forEach() in asynchronous code.

For legacy browsers, use for...i or [].reduce()

To execute the promises in parallel, use Promise.all([].map(...))

The problem

@MahmudHasanCSE
MahmudHasanCSE / README.md
Created January 30, 2019 10:24 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@MahmudHasanCSE
MahmudHasanCSE / README.md
Created January 29, 2019 16:24 — forked from hofmannsven/README.md
My simply Git Cheatsheet