-
Notifications
You must be signed in to change notification settings - Fork 0
02 Architecture
Biswajit Sundara edited this page May 1, 2023
·
2 revisions
The JavaScript runtime environment is the software environment that allows JavaScript code to be executed
- Both in browsers and on server-side platforms like Node.js.
- JavaScript engine, which interprets and executes JavaScript code;
- The Web APIs, which provide access to browser features like the DOM and AJAX;
- and the event loop, which manages asynchronous code execution and callbacks.
Javascript engine is the heart of the Javascript runtime environment.
- Every browser has their own implementation of the JS engine
- Google chrome uses the v8 engine, that's used in Node.js, deno etc.