Can someone point out the differences in implementation of ECMAScript 3rd edition in today's browsers? (Chrome, Safari, IE8, FF)
Are we safe when using ECMAScript 3 standards (and not the extensions that FF and IE have to JScript and JavaScript)?
|
Can someone point out the differences in implementation of ECMAScript 3rd edition in today's browsers? (Chrome, Safari, IE8, FF) Are we safe when using ECMAScript 3 standards (and not the extensions that FF and IE have to JScript and JavaScript)?
| ||||
|
feedback
|
|
Well, of course there are implementation bugs, the most serious that I've had to deal with are on JScript, the Microsoft implementation of the standard, for example: Identifier of FunctionExpressions should be accessible only in the inner scope of the function itself:
The bug is present on all current IE versions, it has just been fixed on IE9 Previews. And actually is even worse, it creates two function objects, for example:
Another well known JScript bug is the "DontEnum Bug", if an object in its scope chain contains a property that is not enumerable (has the
It will evaluate to JScript is the implementation that has the largest number of problems -although the IE9 implementation is getting really way better-. Recommended article: | |||||||
feedback
|