If it's a scripting language as the name implies it must be written in a lower level language right? Like how PHP is written in C what language is JavaScript written in?
|
|
Javascript is just a standard, more formally known as ECMAScript. It can be implemented in any language, just like any standard. Chrome's Javascript engine, V8, is written in C++. From the project page:
Firefox's Javascript engine, SpiderMonkey (and now TraceMonkey) is also written in C++. And as maerics below said, Rhino is written in Java. |
|||||
|
|
Most Javascript interpreters are written in C/C++ (V8, Nitro, etc…), however a compliant interpreter can be written in any language (Rhino→Java, Interpreter→Javascript, etc…). |
|||
|
|
|
Javascript is an implementation of the ECMAScript standard, but there is no singular canonical interpreter like you see with PHP. Most of the major implementations (standalone or as parts of web browsers) out there tend to be largely written in C or C++ for performance reasons, but that's not necessarily always the case. Rhino, an engine maintained by Mozilla, is written in Java. |
|||||||
|
|
All the answers so far are correct, but since it hasn't been mentioned yet, JavaScript can be written in JavaScript. |
|||
|
|
|
Whichever language the client webbrowsers javascript interpreter was written in :) |
|||
|
|