Microsoft® JScript Array Object |
| Language Reference |
|
Provides support for creation of arrays of any data type.
new Array()
new Array( size )
new Array( element0, element1, ..., elementn )
The Array object creation syntax has these parts:
Part Description size The size of the array. As arrays are zero-based, created elements will have indices from zero to size - 1. element0,...,elementn The elements to place in the array. This will create an array with n + 1 elements, and a length of n.
After an array is created, the individual elements of the array can be accessed using [] notation:x = my_array[4];Since arrays in Microsoft JScript are zero-based, the preceding example accesses the fifth element of the array.
© 1996 by Microsoft Corporation.
file: /Techref/language/asp/js/119.htm, 2KB, , updated: 1996/11/22 10:11, local time: 2024/11/5 20:41,
3.15.29.146:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/language/asp/js/119.htm"> Microsoft® JScript Language Reference </A> |
Did you find what you needed? |