Example analysis of slice function usage in JavaScript

Source: Internet
Author: User
Tags split

This example describes the use of slice functions in JavaScript. Share to everyone for your reference. The specific analysis is as follows:

The slice function in JavaScript, which returns a section of an array for the slice function of the array object. (still an array)

Arrayobj.slice (start, [end])

Parameters:

Arrayobj, required option. An Array object.

Start, required option. The starting element of the part specified in Arrayobj is the zero-based subscript.

End, optional. The end element of the part specified in Arrayobj is the zero-based subscript.

Description

The slice method returns an Array object that contains the specified portion of the arrayobj.

The slice method is copied to the element specified by end, but does not include the element. If start is negative, it is the length + start processing, where length is the size of the array. If end is negative, it is treated as length + end where length is the length of the array. If End is omitted, the slice method is copied to the ending of arrayobj. If End appears before start, no elements are copied into the new array.

Example:

In the following example, all elements in the myarray are copied to the NewArray except for the last element:

NewArray = Myarray.slice (0,-1)--------Str Slice

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 The

The

wants this article to help you with your JavaScript programming.

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.