JS specify delimiter Join array element join ()

Source: Internet
Author: User

Specify delimiter join array element join ()

The join () method is used to put all the elements in an array into a string. The elements are delimited by the specified delimiter.

Grammar:

Arrayobject.join (delimiter)

Parameter description:

Note: Returns a string that strings the elements in the array, with the < delimiter > placed between elements and elements. This method does not affect the original contents of the array. We use the join () method to put all the elements of an array into a string with the following code:
<Scripttype= "Text/javascript">  varMyarr= NewArray (3); myarr[0] = "I"; myarr[1] = " Love"; myarr[2] = "JavaScript"; document.write (Myarr.join ());</Script>

Operation Result:

I,love,javascript

We will use separators to separate the elements in the array, with the following code:

<Scripttype= "Text/javascript">  varMyarr= NewArray (3) myarr[0] = "I"; myarr[1] = " Love"; myarr[2] = "JavaScript"; document.write (Myarr.join ("."));</Script>

Operation Result:

I.love.javascript

JS specify delimiter Join array element join ()

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.