Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
"it must be written in a lower language", not necessarily, for example, Narcissus is a Javascript interpreter, written in pure Javascript (it's a meta-circular evaluator) :) – CMS Aug 10 '11 at 4:22

5 Answers

up vote 15 down vote accepted

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:

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 implements ECMAScript as specified in ECMA-262, 5th edition, and runs on Windows (XP or newer), Mac OS X (10.5 or newer), and Linux systems that use IA-32, x64, or ARM processors.

Firefox's Javascript engine, SpiderMonkey (and now TraceMonkey) is also written in C++. And as maerics below said, Rhino is written in Java.

share|improve this answer
2  
Indeed. Although I'd wager that the majority of them are implemented in C++ (or C and its derivatives). Rhino is obviously Java. – maerics Aug 10 '11 at 4:03

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…).

share|improve this answer

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.

share|improve this answer
2  
There could be multiple implementations of PHP, but... no one's interested. – Ignacio Vazquez-Abrams Aug 10 '11 at 4:07
@Ignacio Shocking, isn't it? ;) – dfreeman Aug 10 '11 at 4:09

All the answers so far are correct, but since it hasn't been mentioned yet, JavaScript can be written in JavaScript.

share|improve this answer

Whichever language the client webbrowsers javascript interpreter was written in :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.