Using JavaScript Arrays : Array « Language Basics « JavaScript DHTML






Using JavaScript Arrays

  
<HTML>
<HEAD>
<TITLE>Using Arrays</TITLE>
</HEAD>
<BODY>
<H1 ALIGN="CENTER">Using Arrays</H1>
<SCRIPT LANGUAGE="JavaScript"><!--
employee = new Array(5)
employee[0] = "B"
employee[1] = "C"
employee[2] = "T"
employee[3] = "A"
employee[4] = "S"
document.write(employee[0]+"<BR>")
document.write(employee[1]+"<BR>")
document.write(employee[2]+"<BR>")
document.write(employee[3]+"<BR>")
document.write(employee[4])
// --></SCRIPT>
</BODY>
</HTML>

           
         
    
  








Related examples in the same category

1.Demo all methods in Array
2.Assing array value inside function
3.Simple Array Demo
4.Array loop, find:Control array : Two dimension array
5.Reversing, Sorting, and Concatenating an Array
6.Custom Numeric Comparison for the Array.Sort Method
7.Case-Insensitive Comparison for the Array.Sort Method
8.Iterating Through a Sparse Array
9.Using Functions to Iterate Through an Array
10.Reading and Writing Array Elements
11.Array with a numeric parameter and assign data to it
12.A string array
13.Array - properties and methods:length, join, reverse, push,pop,shift
14.Array - sort()
15.Array - concat and slice
16.Array - splice
17.Methods and Properties of the Array Object
18.Displaying the Contents of an Array
19.Using the Array.join() Method
20.Extending the Length of an Array
21.An Array within an Array
22.Using the Methods of the Array object
23.Array.sort() Possibilities
24.Array.reverse() Method
25. Array Concatenation
26.A Looping Array Lookup
27.A Simple Parallel Array Lookup
28.Adding a prototype Property
29.Two-Dimensional Array Work Around
30.Array definition and iteration
31.Reference an Array by index
32.URL Array
33.Array Utility functions
34.Dynamic array
35.Use for loop to display elements in an array
36.A string array variable
37.Queue based on array