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.