JavaScript at its core is a synchronous or single-threaded language. Each action gets executed one by one and each action depends on the execution of the previous one. Asynchronicity means that if JavaScript has to wait for an operation to complete, it will execute the rest of the code while waiting.
1 Comment
Sort: