This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Pre-ECMAScript 1, JavaScript didn't have native arrays. | |
| * Those who needed them frequently used functions such as the following. | |
| * Also note that there was no special "undefined" value. | |
| */ | |
| function makeArray(len){ | |
| var array = new Object(); | |