|
1 | 1 | #Javascript Engine: |
2 | 2 |
|
3 | | -javascript is an interpreted programming language, which means it will run through a program whenever it needs to be executed, the program will interpret the javascript code, and probably compile it during runtime to machine code, this program is the engine, one of the most known engines is v8 engine, that is used in both chrome browser and node js runtime environments. |
| 3 | +javascript is an interpreted programming language, which means it will run through a program whenever it needs to be executed, the program will interpret the javascript code, and compile it during runtime to machine code, this program is the engine, one of the most known engines is v8 engine, that is used in both chrome browser and node js runtime environments. |
| 4 | + |
| 5 | +##Some of the popular javascript engines: |
| 6 | + |
| 7 | +| Engine| Used in| written in| |
| 8 | +|---|---|---| |
| 9 | +| v8| Chrome browser, node runtime environment| C++| |
| 10 | +| JavascriptCode| Safari browser, React Native|| |
| 11 | +| SpiderMonkey| Firefox|| |
4 | 12 |
|
5 | 13 |
|
6 | 14 |
|
|