Javascript Engine is Single Thread (single call stack) Program
But javascript Runtime is multithread with Javascript Engine ( Call Stack), + Event Loop + Callback Queue ( + web api binding or node library binding)
Event Loop and Callback Queue makes JS runtime runs Asynchronously
Javascript runs with embedded environment like web browser or node js
We can interpret JS Runtime single thread part for concurrency and multi thread part for parallelism
JS Engines
JS Engine Notion