vote up 14 vote down star
2

I have always wondered what the heck is the difference between JScript and JavaScript.

flag

54% accept rate

10 Answers

vote up 19 vote down check

Just different names for what is really ECMAScript. John Resig has a good explanation.

Here's the full version breakdown:

  • IE 6-7 support JScript 5 (which is equivalent to ECMAScript 3, JavaScript 1.5)
  • IE 8 supports JScript 6 (which is equivalent to ECMAScript 3, JavaScript 1.5 - more bug fixes over JScript 5)
  • Firefox 1.0 supports JavaScript 1.5 (ECMAScript 3 equivalent)
  • Firefox 1.5 supports JavaScript 1.6 (1.5 + Array Extras + E4X + misc.)
  • Firefox 2.0 supports JavaScript 1.7 (1.6 + Generator + Iterators + let + misc.)
  • Firefox 3.0 supports JavaScript 1.8 (1.7 + Generator Expressions + Expression Closures + misc.)
  • The next version of Firefox will support JavaScript 1.9 (1.8 + To be determined)
  • Opera supports a language that is equivalent to ECMAScript 3 + Getters and Setters + misc.
  • Safari supports a language that is equivalent to ECMAScript 3 + Getters and Setters + misc.
link|flag
vote up 9 vote down

From Wikipedia: http://en.wikipedia.org/wiki/Jscript

JScript is the Microsoft dialect of the ECMAScript scripting language specification.

JavaScript (the Netscape/Mozilla implementation of the ECMA specification), JScript, and ECMAScript are very similar languages. In fact the name "JavaScript" is often used to refer to ECMAScript or JScript.

Microsoft uses the name JScript for its implementation to avoid trademark issues (JavaScript is a trademark of Sun Microsystems).

link|flag
vote up 3 vote down

JScript is the Microsoft implementation of Javascript

link|flag
vote up 3 vote down

As far as I can tell, two things:

  1. ActiveXObject constructor
  2. The idiom f(x) = y, which is roughly equivalent to f[x] = y.
link|flag
The f(x) = y idiom bugs me the most! Why, oh why didn't they just go with f[x] = y... – Ates Goral Dec 15 '08 at 16:42
vote up 2 vote down

According to this article:

  • JavaScript is a scripting language developed by Netscape Communications designed for developing client and server Internet applications. Netscape Navigator is designed to interpret JavaScript embedded into Web pages. JavaScript is independent of Sun Microsystem's Java language.

  • Microsoft JScript is an open implementation of Netscape's JavaScript. JScript is a high-performance scripting language designed to create active online content for the World Wide Web. JScript allows developers to link and automate a wide variety of objects in Web pages, including ActiveX controls and Java programs. Microsoft Internet Explorer is designed to interpret JScript embedded into Web pages.

link|flag
Open implementation? – phjr Sep 26 '08 at 8:21
@phrj: this is the Humpty Dumpty definition of "Open". AFAIK, it means "orthogonal". – Shog9 Sep 27 '08 at 20:26
vote up 2 vote down

Javascript, the language, came first, from Netscape.

Microsoft reverse engineered Javascript and called it JScript to avoid trademark issues with Sun. (Netscape and Sun were partnered up at the time, so this was less of an issue)

The languages are identical, both are dialects of ECMA script, the after-the-fact standard.

Although the languages are identical, since JScript runs in Internet Explorer, it has access to different objects exposed by the browser (such as ActiveXObject)

link|flag
Neither the languages are really identical, as outlined in another post. – EFraim Jul 28 at 7:04
vote up 1 vote down

This is pretty well documented in several places easily found using Google, e.g. What is the difference between JavaScript, JScript and ECMAScript?

link|flag
vote up 0 vote down

JScript is Microsoft's implementation of the ECMAScript specification. JavaScript is the Mozilla implementation of the specification.

link|flag
vote up 0 vote down

Wikipedia has this to say about the differences.

In general JScript is an ActiveX scripting language that is probably interpreted as JavaScript by non-IE browsers.

link|flag
vote up 0 vote down

I was trying to provide an answer to http://stackoverflow.com/questions/901550/what-are-the-javascript-functions-syntax-which-are-not-supported-by-ie

I'm sure it's already been pointed out, but IE, you can't use const keyword to declare variables:

const MY_CONSTANT = 10;

link|flag

Your Answer

Get an OpenID
or

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