Skip to content

Instantly share code, notes, and snippets.

@FFKL
Created August 19, 2020 16:34
Show Gist options
  • Save FFKL/37a65ad75f4239ba33376b5bdeddfba3 to your computer and use it in GitHub Desktop.
Save FFKL/37a65ad75f4239ba33376b5bdeddfba3 to your computer and use it in GitHub Desktop.
class Item {
constructor() {
return new Promise((resolve) => setTimeout(() => resolve(this), 1000));
}
}
(async () => {
const test = await new Item();
console.log(test);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment