What if I do not mention the return statement in the async function?
If you don't include a return statement in an async function, the function will still run without any errors. However, it will return an implicit value of undefined.
In other words, if you try to await the async function, you will get a resolved Prom...
rudraprasadmohapatra.hashnode.dev1 min read