Skip to content
Advertisement

Using async functions as conditions

Lets say i want to run an if statment where the condition is async function.

JavaScript

This is the function, it uses mongoose findOne which is an async task.

JavaScript

The problem is that the if statment gets called before the con can get executed which then does’nt set the condition.

Advertisement

Answer

You can do it this way :

JavaScript
  1. Return User.findOne from your function.

(optional) 2. Add it .lean() (returns simple JSON, faster)

(optional) 3. Add it .exec() so it returns a true Promise and not just a thenable

  1. now you can simply await con() anywhere inside an async function, just as if it was synchronous.
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement