Skip to content
Advertisement

How to do an If await by the async function response

I’m trying to create a function that checks if a table already exists in the database and if it doesn’t, create one But the problem is the If doesn’t await for checkTableExist()

JavaScript

Console Log

JavaScript

Advertisement

Answer

In checkTableExist you are checking your DB Query results using a callback function. In there, when you return, you are not actually returning to the createTable function, you’re getting back to checkTableExist.

If you use await, your returns should work correctly:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement