Skip to content

Instantly share code, notes, and snippets.

View realrains's full-sized avatar

Jinwoo Jang realrains

View GitHub Profile
async () => {
const response = await getData();
const result = await someTask(response);
const result_2 = await someNextTask(result);
const result_3 = await someNextNextTask(result_2);
}