Api doc for Javascript 1.8.1?

Not 1.8.1 - the latest version of Javascript?

Why is https://developer.mozilla.org/en/JavaScript just giving you the api doc for version 1.5?

+3
source share
1 answer

This is because some features have been added to each version of JavaScript, but much more has changed. For example, in JavaScript 1.6 several array processing functions have been added; almost nothing has changed. Because of this, most documentation can be stored the same way, although the MDC probably needs to update its version number in its documentation.

Changes in each version:

https://developer.mozilla.org/en/New_in_JavaScript_1.5

https://developer.mozilla.org/en/New_in_JavaScript_1.6

https://developer.mozilla.org/en/New_in_JavaScript_1.7

https://developer.mozilla.org/en/New_in_JavaScript_1.8

https://developer.mozilla.org/En/New_in_JavaScript_1.8.1

https://developer.mozilla.org/En/New_in_JavaScript_1.8.5

+2

Source: https://habr.com/ru/post/1765005/


All Articles