Ensure you don't use promises without `await`ing them first.

이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Metadata

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 awaiting 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) {
}
PREVIEWING: dgreen15/github-error-fix