Archived
What advantage(s) are sought through the use of promises?
-1
Community Evaluations
Incorrect answer
Anas15/11/2023
C'est un autre avantage majeur des promesses Ă part le fait d'ordonner le dĂ©roulement des opĂ©rations. Elles aident Ă Ă©viter ce qu'on appelle "l'enfer des callbacks" (callback hell), oĂč de multiples fonctions de rappel sont imbriquĂ©es les unes dans les autres, rendant le code difficile Ă lire et Ă maintenir. Les promesses permettent une structure de code plus plate et plus lisible. Le choix des rĂ©ponses est incorrect.
Similar QuestionsMore questions about Javascript
61
Understanding the differences between `map()` and `forEach()` methods in JavaScript28
Write a JavaScript function that fetches data from an API and logs it to the console.19
Fix the following Javascript loop:10
The certificate variable is not attainable outside the if loop9
Use spread operator to split an array into two arrays in Javascript