The definition of JS array object and its related properties and methods

Source: Internet
Author: User

Array:

The array object in JS is essentially the same as the collection in Java, and its length is variable. The element can be any type of object.

Defined:
New Array (); New Array (size); New Array (element0, Element1, ..., elementn); var array = [Element0,element1,..., ELEMENTN];
Define a two-dimensional array var array2w = [ [Element0,element1,..., elementn], [Element0,element1,..., ELEMENTN], [Element0,element1,..., Elementn]];
Common properties: Length Common methods:
Concat () Joins two or more arrays and returns the result.
Join () Put all the elements of the array into a string. element is delimited by the specified delimiter.
Pop () Delete and return the last element of the array
Push () Adds one or more elements to the end of the array and returns the new length.
Reverse () Reverses the order of the elements in the array.
Shift () Delete and return the first element of the array
Sort () Sorting elements of an array
ToString () Converts the array to a string and returns the result.
Unshift () Adds one or more elements to the beginning of the array and returns the new length.

The definition of JS array object and its related properties and methods

Related Article

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.