Skip to content

Instantly share code, notes, and snippets.

@ivan-hilckov
Created January 12, 2022 09:31
Show Gist options
  • Save ivan-hilckov/5fa19f39fab7672f6b7e5a12fd1b180c to your computer and use it in GitHub Desktop.
Save ivan-hilckov/5fa19f39fab7672f6b7e5a12fd1b180c to your computer and use it in GitHub Desktop.
promise question
//Что выведет код ниже?
let promise = new Promise(function(resolve, reject) {
resolve(1);
setTimeout(() => resolve(2), 1000);
});
promise.then(alert);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment