/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+---------+---------------+-----------------------------------------------------+
Type Item Description
+---------+---------------+-----------------------------------------------------+
Method
+---------+---------------+-----------------------------------------------------+
concat() Concatenates the elements passed into an existing array.
This method was added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
join() Concatenates all elements of an array into one string.
+---------+---------------+-----------------------------------------------------+
pop() Deletes the last element of an array.
+---------+---------------+-----------------------------------------------------+
push() Adds elements to the end of an array.
+---------+---------------+-----------------------------------------------------+
reverse() Reverses the order of the elements in the array.
This method was added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
shift() Deletes elements from the front of an array. This
method was added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
slice() Returns a subsection of the array. This method was
added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
sort() Sorts elements in array.
+---------+---------------+-----------------------------------------------------+
splice() Inserts and removes elements from an array. This
method was added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
toSource() Converts elements to a string with square brackets.
This method was added in JavaScript 1.3.
+---------+---------------+-----------------------------------------------------+
toString() Converts the elements in an array to a string.
+---------+---------------+-----------------------------------------------------+
unshift() Adds elements to the front of an array. This method
was added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
valueOf() Returns an array of elements separated by commas.
+---------+---------------+-----------------------------------------------------+
Property
+---------+---------------+-----------------------------------------------------+
index For an array created by a regular expression match,
this property returns the indexed location of the match.
This was added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
input For an array created by a regular expression match,
this property returns the original string. This was
added in JavaScript 1.2.
+---------+---------------+-----------------------------------------------------+
length The number of elements in the array.
+---------+---------------+-----------------------------------------------------+
prototype Provides the capability for a programmer to add
properties to instances of the Array object.
This property was added in JavaScript 1.1.
+---------+---------------+-----------------------------------------------------+
*/
|