Функция стрелки JavaScript с обещаниями и обратными вызовами
// ES6
asyncFunction()
.then(() => asyncFunction1())
.then(() => asyncFunction2())
.then(() => finish);
SAMER SAEID