Skip to content

Instantly share code, notes, and snippets.

@lwillmeth
Created April 15, 2019 21:44
Show Gist options
  • Save lwillmeth/b26458a9a360ea02873a51f4f75cb0ca to your computer and use it in GitHub Desktop.
Save lwillmeth/b26458a9a360ea02873a51f4f75cb0ca to your computer and use it in GitHub Desktop.
console.log('A');
(async () => {
try {
const result = await new Promise((resolve, reject) => {
resolve('B');
});
console.log(result); // B
} catch (e) {
console.log('caught something');
}
})();
console.log('C');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment