Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created July 20, 2017 21:25
Show Gist options
  • Save gskachkov/0e0534752f5556ebb92695fbe8d1001a to your computer and use it in GitHub Desktop.
Save gskachkov/0e0534752f5556ebb92695fbe8d1001a to your computer and use it in GitHub Desktop.
Promise.resolve(1)
.then(value => { console.log('fulfill:', value); return 'new value'; })
.finally(value => { console.log('finally:', value); });
// fulfill: 1
// finally: new value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment