Skip to content

Instantly share code, notes, and snippets.

@liondancer
Created January 31, 2017 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liondancer/b346101f70d6dc0b88433246cc555741 to your computer and use it in GitHub Desktop.
Save liondancer/b346101f70d6dc0b88433246cc555741 to your computer and use it in GitHub Desktop.
Nested while loop skeleton
const func = () => {
if (condition) {
return asyncCall().then(() => {
if (condition) {
if (condition) {
// continue looping
return func();
} else {
console.log('some logic');
}
} else {
if (condition) {
return func();
} else {
// run a different function that also returns a Promise
return diffFunc();
}
}
});
} else {
return Promise.resolve()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment