Skip to content

Instantly share code, notes, and snippets.

@shivenigma
Last active August 13, 2020 14:54
Show Gist options
  • Save shivenigma/434194294f007bb3204ad6abed72a448 to your computer and use it in GitHub Desktop.
Save shivenigma/434194294f007bb3204ad6abed72a448 to your computer and use it in GitHub Desktop.
Used in a blog post
const greet = new Promise((resolve, reject) => {
resolve('Hello, there');
});
greet.then(success => {
console.log(success);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment