Examples of push () and join () functions in JavaScript, pushjoin

Source: Internet
Author: User

Examples of push () and join () functions in JavaScript, pushjoin

Definition and usage

The push method can add one or more elements to the end of an array and return a new length.

The join method is used to add all elements in the array to a specified string. The elements are separated by the specified separator.

Syntax

arrayObject.push(newelement1,newelement2,....,newelementX)arrayObject.join(separator)。

The parameter description is required for newelement1. The first element to be added to the array. Newelement2 is optional. The second element to be added to the array. NewelementX is optional. You can add multiple elements.

The parameter description separator is spliced by "," by default. You can also specify the separator to be used.

Example:

var arr = [1,2];console.log("arrBegin-->"+arr);alert(arr.push(3,4));console.log("arrNew-->"+arr);var joinStr = arr.join();console.log("joinStr1--->"+joinStr);var joinStr = arr.join("");console.log("joinStr2--->"+joinStr);var joinStr = arr.join(".");console.log("joinStr3--->"+joinStr);

Output result

arrBegin-->1,2alert(4);arrNew-->1,2,3,4joinStr1--->1,2,3,4]joinStr2--->1234joinStr3--->1.2.3.4

The above is a detailed description of the push () and join () function instances in JavaScript provided by the editor. I hope it will be helpful to you. If you have any questions, please leave a message for me, the editor will reply to you in a timely manner. Thank you very much for your support for the help House website!

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.