Fonction de flèche javascript avec des promesses et des rappels
// ES6
asyncFunction()
.then(() => asyncFunction1())
.then(() => asyncFunction2())
.then(() => finish);
SAMER SAEID