Skip to content

Instantly share code, notes, and snippets.

@focusaurus
Created January 29, 2016 16:52
Show Gist options
  • Save focusaurus/b33dfaa02766c4f0d15d to your computer and use it in GitHub Desktop.
Save focusaurus/b33dfaa02766c4f0d15d to your computer and use it in GitHub Desktop.
Promises are always async
Promise.resolve('foo').then(console.log)
console.log('bar')
// outputs:
// bar
// foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment