Ensure you don't use promises without `await`ing them first.
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
ID: javascript-best-practices/promise-await
Language: JavaScript
Severity: Warning
Category: Error Prone
Description
This rule is critical because it ensures promises are properly handled in JavaScript. Promises are objects that represent the eventual completion or failure of an asynchronous operation. Using a promise without await
ing it can lead to unexpected behavior, as the promise might not yet be resolved or rejected at the time it’s used.
To adhere to this rule, always use the await
keyword when using a promise in a condition or loop. This ensures that the promise resolves or rejects before the condition or loop is evaluated.
Non-Compliant Code Examples
const foo = Promise.resolve('thing');
if (foo) {
}
const data = foo ? foo : bar;
while (foo) {
}
Compliant Code Examples
const foo = Promise.resolve('thing');
if (await foo) {
}
const data = (await foo) ? foo : bar;
while (await foo) {
}