Is JavaScript Promise Sync or Async?
TLDR; Any code in Javascript or Typescript that uses the word “promise” is asynchronous. What Does Async Mean? When coding asynchronously it means that your code is running on a different thread or CPU core than the main program that started the process. This leaves the main thread free to do important jobs like keeping … Read more