⛄Snowberb⛄ – 10-12 May 18

⛄Snowberb⛄5/18/2023
Why doesnt the try catch finally of this code respect the awaits, but if it is inside the (async () => {})() it does? I dont understand the syntax here
 try {
        (async () => {
          if (!...) {
            const ... = await ...;
            ...
            return;
          }
          await ...
        })();
} catch (e) {} finally {}
⛄Snowberb⛄5/18/2023
The above doesnt work, but this does:
     (async () => {
        try {
          if (!...) {
            const ... = await ...;
            ...
            return;
          }
          await ...
         } catch (e) {} finally {}
     })();
UUUnknown User5/18/2023
3 Messages Not Public
Sign In & Join Server To View
⛄Snowberb⛄5/18/2023
didnt understand
UUUnknown User5/18/2023
2 Messages Not Public
Sign In & Join Server To View
⛄Snowberb⛄5/18/2023
oh
UUUnknown User5/18/2023
Message Not Public
Sign In & Join Server To View