Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

JavaScript 1.1 の新機能

この翻訳は不完全です。英語から この記事を翻訳 してください。

The following is a changelog for JavaScript from Netscape Navigator 2.0 to 3.0. The old Netscape documentation references this as "Features added after version 1". Netscape Navigator 3.0 was released on August 19, 1996. Netscape Navigator 3.0 was the second major version of the browser with JavaScript support.

JavaScript versions

Netscape Navigator 3.0 also introduced JavaScript language versions.

<script language="JavaScript">    
<script language="JavaScript1.1"> 

New features in JavaScript 1.1

New objects

New properties

New methods

New operators

Other new features

Changed functionality in JavaScript 1.1

  • "Object deletion". You can remove an object by setting its object reference to null.
  • constructor and prototype properties on objects added.
  • eval() is now a method of every object (was previously a built-in function); it evaluates a string of JavaScript code in the context of the specified object.
  • Math.random() now works on every platform.
  • toString(): Added radix parameter, which specifies the base to use for representing numeric values.
  • isNaN() now works on every platform (not only Unix anymore)
  • parseFloat() and parseint() now return NaN on all platforms, if the first character of the specified string cannot be converted to a number; in previous releases, it returned NaN on Solaris and Irix and zero on all other platforms.
</script>

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank
 最終更新者: teoli,