I have always wondered what the heck is the difference between JScript and JavaScript.
|
2
|
|
|
|
|
|
Just different names for what is really ECMAScript. John Resig has a good explanation. Here's the full version breakdown:
|
||
|
|
|
|
From Wikipedia: http://en.wikipedia.org/wiki/Jscript
Microsoft uses the name JScript for its implementation to avoid trademark issues (JavaScript is a trademark of Sun Microsystems). |
|||
|
|
|
|
JScript is the Microsoft implementation of Javascript |
||
|
|
|
|
As far as I can tell, two things:
|
||
|
|
|
According to this article:
|
||
|
|
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) |
||
|
|
|
This is pretty well documented in several places easily found using Google, e.g. What is the difference between JavaScript, JScript and ECMAScript? |
||
|
|
|
|
JScript is Microsoft's implementation of the ECMAScript specification. JavaScript is the Mozilla implementation of the specification. |
||
|
|
|
|
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. |
||
|
|
|
|
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; |
||
|
|
