I wrote a Javascript code using async, await and used try, catch in each async function.
Suppose if I write 10 async function then I need to write try, catch in all those 10 functions. Now I am getting question in my mind that doesn't it cause performance overhead?
If it causes any performance overhead then what will be the solution for this problem?