Skip to content

Instantly share code, notes, and snippets.

@nlopin
Created August 4, 2020 14:46
Show Gist options
  • Save nlopin/582d79374db2e29797d787f3f9788188 to your computer and use it in GitHub Desktop.
Save nlopin/582d79374db2e29797d787f3f9788188 to your computer and use it in GitHub Desktop.
Promise
const promise = new Promise(function(resolve, reject) {
const data = ... // асинхронная операция: запрос в БД, API, etc.
resolve(data); // переводим промис в состояние fulfilled и отдаем наружу результат операции
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment