Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find changelog of JavaScript?

I would like to see list of changes that were made in every version of JavaScript. I would also be interested in what is planned to be added in JavaScript and when a new realease is planned.

Do you know any site where this info can be found?

Thank you

like image 656
Palo Avatar asked Mar 17 '11 10:03

Palo


2 Answers

  1. The standard it is based around: Ecmascript specs: http://www.ecma-international.org/publications/standards/Ecma-262.htm

  2. Firefox specifics: MDC javascript docs including differences in javascript versions: https://developer.mozilla.org/en/javascript

  3. IE specifics: MSDN library, scripting area: http://msdn.microsoft.com/en-us/library/ff729665(v=VS.94).aspx

like image 196
Martin Jespersen Avatar answered Sep 24 '22 16:09

Martin Jespersen


JavaScript is a dialect of ECMAScript, have a look at the Wikipedia page of ECMAScript for a version history. You can find the full documentation on the official ECMAScript page.

like image 44
David Avatar answered Sep 26 '22 16:09

David