Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nafeu/b4fd5465e8f941bad63fadee3850c1a8 to your computer and use it in GitHub Desktop.

Select an option

Save nafeu/b4fd5465e8f941bad63fadee3850c1a8 to your computer and use it in GitHub Desktop.
let result;
result = await delay(() => '[RETURN VALUE 1]', 1000);
console.log(result); // [RETURN VALUE 1] in result
result = await delay(() => '[RETURN VALUE 2]', 1000);
console.log(result); // [RETURN VALUE 2] in result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment