Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any open source interpreter for JavaScript?

Is JavaScript an open source programming language? I want to know how some objects and methods work.

I mean, is the compiler, interpreter, or parser for JavaScript open source?

like image 926
Kermia Avatar asked Jul 23 '11 08:07

Kermia


2 Answers

There are numerous open source JavaScript engines (V8, Rhino and SpiderMonkey spring to mind) as well as closed source implementations (I assume that whatever Opera and Microsoft use are not open source).

The language is fairly tightly based on the ECMAScript specification, which is freely available.

like image 145
Quentin Avatar answered Nov 14 '22 22:11

Quentin


What do you mean by open source language?

JavaScript is interpreted by the browser and depends upon the vendor and developer which engine it uses. Some of the popular engines are listed in List of ECMAScript engines.

like image 36
Tarun Avatar answered Nov 15 '22 00:11

Tarun