Skip to content

Instantly share code, notes, and snippets.

@nem035
Last active November 7, 2018 08:39
Show Gist options
  • Select an option

  • Save nem035/3b42a7fc1d0652ff57550c777d7767e8 to your computer and use it in GitHub Desktop.

Select an option

Save nem035/3b42a7fc1d0652ff57550c777d7767e8 to your computer and use it in GitHub Desktop.
const p = new Promise(function(resolve) {
resolve(Math.random());
});
// both of these statements give the same output
p.then(console.log);
p.then(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment