top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between JavaScript and Jscript?

+7 votes
397 views
What is the difference between JavaScript and Jscript?
posted Feb 10, 2014 by Prachi Agarwal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

As explained by JavaScript guru Douglas Crockford in his talk titled The JavaScript Programming Language on YUI Theater,

MS did not want to deal with Sun about the trademark issue, and so they called their implementation JScript. A lot of people think that JScript and JavaScript are different but similar languages. That's not the case. They are just different names for the same language, and the reason the names are different was to get around trademark issues.

JScript supports conditional compilation, which allows a programmer to selectively execute code within block comments. This is an extension to the ECMAScript standard that is not supported in other JavaScript implementations.

Source: Wiki

answer Feb 11, 2014 by Jai Prakash
...