Javascript – Do I need to use async if the function returns a promise?
I have this function on a class. It is returning a promise. static blabla(): Promise <number> { return new Promise < number > ((resolve) => { resolve(999); }); } This function works fine but I would like to confirm if…