JavaScript push (), join () Function example detailed _javascript tips

Source: Internet
Author: User
Tags function examples

Definitions and usage

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

The Join method is used to add all elements of an array to a specified string, and the elements are split by the specified delimiter.

Grammar

Arrayobject.push (Newelement1,newelement2,...., newelementx)
arrayobject.join (separator).

Parameter description newelement1 required. The first element to add to the array. Newelement2 Optional. The second element to add to the array. Newelementx Optional. Multiple elements can be added.

The parameter description separator by default is by pressing "," or you can specify the separator you want to use.

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 results

arrbegin-->1,2
alert (4);
arrnew-->1,2,3,4
joinStr1--->1,2,3,4
]joinstr2--->1234 joinStr3
--->1.2.3.4

The above is a small set to introduce the JavaScript in the push (), join () function examples, I hope to help you, if you have any questions please give me a message, small series will promptly reply to everyone. Here also thank you very much for the cloud Habitat Community website support!

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.