JavaScript versions a historical noteQuestion: What JavaScript versions are there? Answer: JavaScript is one of the youngest programming languages. It was first implemented by Netscape Communications in 1995. The first browser to support JavaScript was Netscape Navigator 2.0 beta version. By 1999 the two major browsers, Netscape Navigator and Microsoft Internet Explorer, supported the following client-side versions of JavaScript:
Netscape and Microsoft implementations of JavaScript were quite different,
even for the same JavaScript version number.
For example, JavaScript 1.0 in Internet Explorer 3 Fortunately, by the late 1990s, the core JavaScripit language has been standardized (under the name ECMAScript). The new reality is that a web developer should no longer care about the JavaScript version number per se rather, robust portable scripts must rely on the JavaScript ECMA 262 Standard, detect the features they need, and degrade gracefully if any features are not available. What does that mean for cross-platform coding? Essentially, you have to use either of the following techniques: |
Copyright © 1999-2011, JavaScripter.net.