Skip to content
Advertisement

How to run two functions asynchronously in JavaScript using Async/Await;

I am creating a simple react pharmacy application in which I’m supposed to change remove all the medicines from a certain group and then delete the group.

I have the two functions created like this.

1. changeMedicineGroupFunction

JavaScript

2.deleteGroupFunction.

JavaScript

then a final function is used to invoke the two functions above as follows

JavaScript

QUESTION How do I make my removeMedicinesFromGroup() function asynchronous in such a way that the deleteGroup() function is only invoked when the code above it is complete i.e the changing medicine Group logic. I want to use async-await. This is crucial for my application because if I delete a group while it still has data I have like whole foreign key constraint errors I’m trying to avoid.

Please Help.

Advertisement

Answer

In order to achieve that ,you have to some changes in your code. Starting with changeMedicineGroupFunction and deleteGroup that both should return a promise in order to await it in another function in your case removeMedicinesFromGroup.

Example of changeMedicineGroupFunction:

JavaScript

then in removeMedicinesFromGroup :

JavaScript

And i used regular for Loop instead of forEach to use await in it. I found this now that has many answers about using async/await in for loop whether sequence or parallel. Using async/await with a forEach loop.

I hope it works for you.

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