79281843

Date: 2024-12-15 05:27:53
Score: 1.5
Natty:
Report link

Since caller() is an async function and await has not been called on it - it will execute in an async manner. This means it may move on to the next line of code, before execution has been completed, If the order of execution matters ( you want to execute in an a sync manner ) you need to use await OR use .then()

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nimit Jain