Operation of JS Array

Source: Internet
Author: User
Tags javascript array

Reproduced

Operation of JS Array

With JS for a long time, but did not delve into the array of JS form. Occasionally used as simple string.split (char). This period of time to do a project, using the array of places a lot, since the JS master himself unexpectedly, a am, I learn! Oh. After learning, the function of JS array is very powerful, far stronger than the vb,c#, we look at it slowly

1. Creation of arrays

VarArrayobj=NewArray ();//Create an array

var arrayobj = new Array ([size]); // Create an array and specify the length, note not the upper limit, is the length

var arrayobj = new Array ([element0[, element1[, ... [, ELEMENTN]]]); // Create an array and assign a value

To illustrate, although the second method creates an array that specifies the length, the array is actually variable in all cases, meaning that even if the length is 5, the element can still be stored outside the specified length, note that the length changes accordingly.

2. Access to elements of an array

var testgetarrvalue=arrayobj[1]; // Gets the element value of the array

arrayobj[1]= " This is the new value "; // Assign a new value to the array element

3. Adding array elements

CodeArrayobj. Push ([Item1 [item2] [... [Itemn]]); // adds one or more new elements to the end of the array and returns the new length of the array

Arrayobj.unshift ([Item1 [item2 [...] [Itemn]]); // Add one or more new elements to the beginning of the array, the elements in the array automatically move back, returning the new length of the array

Arrayobj.splice (Insertpos,0, [item1[, item2[, ... [, Itemn]]]); // inserts one or more new elements into the specified position of the array, the elements of the insertion position are automatically moved back, and the "" is returned.

4. Deletion of array elements

Arrayobj.pop (); // Remove the last element and return the element value

Arrayobj.shift (); // Remove the first element and return the element value, the elements in the array are automatically moved forward

Arrayobj.splice (Deletepos,deletecount); // deletes the specified number of DeleteCount elements from the specified position deletepos, returning the removed element as an array

5. Interception and merging of arrays

Arrayobj.slice (start, [end]); returns the part of the array as an array, noting that the element of end is not included, and if the end is omitted, all elements after start are copied

Arrayobj.concat ([item1[, item2[, ... [, Itemn]]]); //To concatenate multiple arrays (which can also be strings, or a mixture of arrays and strings) into an array, returning a new concatenated array

6, copy of the array

Arrayobj.slice (0); // Returns a copy array of the array, note that it is a new array, not a pointer to the

Arrayobj.concat (); // Returns a copy array of the array, note that it is a new array, not a pointer to the

7. Sorting of array elements

Arrayobj.reverse (); // invert element (top row to last, last row to top), return array address

Arrayobj.sort (); // sort array elements, return the arrays address

8. String of array elements

Arrayobj.join (separator); // Returns a string that connects each element value of an array together, separated by separator.

toLocaleString, toString, valueOf: Can be seen as a special use of joins, not commonly used

Ii. 3 properties of an array object

1. Length Property

The Length property represents the size of the array, which is the number of elements in it. Because the index of an array always starts with 0, the upper and lower bounds of an array are: 0 and length-1. Unlike most other languages, the length property of a JavaScript array is variable, which requires special attention. When the length property is set larger, the state of the entire array does not change in fact, only the length property becomes larger, and when the length property is set to an earlier hour, the value of the element whose index is greater than or equal to length in the original array is lost. Here is an example that shows changing the length property:

CodeVarArr=[12,23,5,3,25,98,76,54,56,76];

//Defines an array that contains 10 numbers

alert (arr.length);//Displays the length of the array 10

Arr.length=12;//Increase the length of an array

alert (arr.length);//The length of the display array has changed to 12

Alert (arr[8]);//Displays the value of the 9th element, which is 56

Arr.length=5;//

Alert (arr[8< Span style= "COLOR: #000000" >)  //

Arr.length =10; // Restores the array length to 10

Alert (arr[8// Although the length is restored to 10, but the 9th element cannot be retracted, showing "undefined"

By the above code we can clearly see the property of the length property. But the length object can be not only explicitly set, it may also be implicitly modified. You can use an undeclared variable in JavaScript, or you can use an undefined array element (an element that has an index that exceeds or equals length), at which point the value of the length property is set to the value of the index of the element being used plus 1. For example, the following code:

VarArr=[12,23, 5,3 25,98 ,76, 54,56,76";

Alert (arr.length);

Arr[15]=34
Alert (arr.length);
/span>

The code also defines a 10-digit array, with the alert statement to see its length as 10. An element with an index of 15 is then assigned a value of 15, or arr[15]=34, and then the length of the array is output with the alert statement, resulting in 16. In any case, this is a surprising feature for developers who are accustomed to strongly typed programming. In fact, the initial length of an array created with the new Array () is 0, and it is the operation that does not define the element in it that changes the length of the array.

As you can see from the above introduction, the length property is so magical that it makes it easy to increase or decrease the capacity of the array. Therefore, an in-depth understanding of the length attribute can be used flexibly in the development process.

2. Prototype Properties

Returns a reference to the object type prototype. The prototype property is common to object.

Objectname.prototype

The ObjectName parameter is the name of the object.

Description: Provides a basic set of functions for a class of objects using the prototype property. The new instance of the object "inherits" the action given to the object's prototype.

For array objects, use the following example to illustrate the purpose of the prototype property.

Adds a method to the array object that returns the value of the largest element in the array. To do this, declare a function, add it to array.prototype, and use it.

CodefunctionArray_max ()

{

VarI
Max=This[0];

For(I=1; I<This. length; I++)

{

If(max<This[i])

Max=This[i];


}

ReturnMax


}

Array.prototype.max= array_max;

var x  = new array (1, 2, 3  4, 5, 6
var y =< Span style= "COLOR: #000000" > x.max ();

After the code executes, Y saves the maximum value in the array x, or 6.

3. Constructor properties

Represents a function that creates an object.

Object.constructor//object is the name of the object or function.

Description: The constructor property is a member of all objects that have prototype. They include all JScript intrinsic objects except the Global and Math objects. The constructor property holds a reference to a function that constructs a particular object instance.

For example:

X = new String ("Hi");

If (x.constructor = = String) // processing (condition is true).

Or

function MyFunc {

// function body.

}

y = new MyFunc;

If (y.constructor = = MyFunc) // processing (condition is true).

For arrays:

Y = new Array ();

Operation of JS Array

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.