I was wrong about JavaScript Promise being an asynchronous function.

I learned from the following article that Promise in JavaScript is called synchronously. https://zenn.dev/yuhua_shi/articles/331569ef2fe886 I assumed that functions passed to Promise were asynchronous functions. Below is a summary of the Promise call order for your own use. Promise Calling Order Su…