Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save isublimity/ebb61c0447625558435fb6da63263a12 to your computer and use it in GitHub Desktop.
Save isublimity/ebb61c0447625558435fb6da63263a12 to your computer and use it in GitHub Desktop.
say.js
function say() {
setTimeout(() => console.log('google'))
new Promise((resolve) => resolve()).then(() => console.log("yandex"));
console.log("smi2");
}
say()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment