mirror of
https://github.com/xfarrow/javascript-tutorials.git
synced 2025-04-24 07:17:27 +02:00
4 lines
289 B
Plaintext
4 lines
289 B
Plaintext
JavaScript is single-threaded (but note that NodeJS is not entirely single-threaded, as it internally mantains a thread
|
|
pool), but it can still take advantage of asynchronous programming.
|
|
|
|
The Event Loop, which is a JavaScript construct that completes a new task while waiting for another. |