vote up 8 vote down star
4

EcmaScript Fifth Edition, or Ecma-262, has been announced and contains some changes to the language. What features in the new version are going to help you write better code?

flag

6 Answers

vote up -2 vote down

Sadly, absolutely nothing, since IE will not support any standards that are newer than five years or so.

link|flag
Really? Does it matter that IE implemented XSL-T, SMIL and other technologies before they became a standard? – Sergey Ilinsky Apr 18 at 21:13
1  
Congratulations, Microsoft, you made up something which eventually became a standard. You still fail at following existing standards made up by others and that's what's been bothering web developers for years now. – blahblah Apr 18 at 22:48
I've been lucky enough to use a proprietary server architecture that uses the latest version of TraceMonkey and therefore have been able to use some of these features, but for the vast majority of developers you are absolutely correct. How can something no one is able to use enhance their code? +1 – Prestaul Nov 27 at 22:08
vote up 1 vote down

"Strict" mode sounded promising in the introduction, but a quick glance at Annex C (page 223) makes me wonder how useful it'll be.

link|flag
vote up 2 vote down

The JSON object in section 15.12 looks awesome. That would help, as right now one must rely one either the insecure eval() or some slow pure-JavaScript implementation that you have to include with the rest of your scripts. There's no native support, but this new version will have it.

link|flag
vote up 1 vote down

A lot of what ES3.1 does is actually define already existing behaviour -- things like enumeration order in for (... in ...) ... statements. So to an extent those things won't directly help you (unless a new js engine comes along).

It does also define a few new functions like

* prototype access -- i think through `getPrototype()` or something -- alas this isn't as powerful as `__proto__` present in JavaScriptCore and SpiderMonkey

* The JSON object to provide fast and safe JSON parsing rather than the conflagration of existing techniques

[edit: in response to the person complaining about IE -- i believe IE8 already supports the above features]

link|flag
vote up 0 vote down

There is an interesting video about EcmaScript 5. I strongly recommend it.

link|flag
vote up 1 vote down

John Reisig (the creator of jQuery) has a long post on the new features in ECMA Script 5.

link|flag

Your Answer

Get an OpenID
or

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