Skip to content

Instantly share code, notes, and snippets.

@deleteman
Last active January 4, 2023 14:22
Show Gist options
  • Save deleteman/07fbc6119137ddda52db90f0607d806a to your computer and use it in GitHub Desktop.
Save deleteman/07fbc6119137ddda52db90f0607d806a to your computer and use it in GitHub Desktop.
const asyncAction = () => {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve('Async action completed');
}, 1000);
});
};
async function foo() {
try {
const result = await asyncAction();
console.log(result);
} catch (error) {
console.error(error);
}
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment