Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save isublimity/3701ed9ae93297262ca7aeaf0721f181 to your computer and use it in GitHub Desktop.
Save isublimity/3701ed9ae93297262ca7aeaf0721f181 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