Last active
August 17, 2016 19:43
-
-
Save derzunov/2fc5cc7393c24e27c6c843652aaf208f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asyncFunc1().then(function( data ) { | |
console.log( data.message ); // Выводим результат первой функции | |
asyncFunc2().then(function( data ) { | |
console.log( data.message ); // Выводим результат второй функции | |
asyncFunc3().then(function( data ) { | |
console.log( data.message ); // Выводим результат третьей функции | |
// Тут делаем наши дела после того, как все функции отработали | |
console.log("Всё!"); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment