How to Use the splice () method in JavaScript

Source: Internet
Author: User

How to Use the splice () method in JavaScript

This article mainly introduces how to use the splice () method in JavaScript. It is the basic knowledge of JS beginners. For more information, see

The splice () method of the JavaScript array changes the content of the array, adds new elements, and removes old elements.

Syntax

?

1

Array. splice (index, howMany, [element1] [,..., elementN]);

The following is the detailed information about the parameters:

Index: the array that changes at the beginning of the index.

How: integer, indicating that the number of elements in the old array is removed. If the howmany value is 0, no elements are deleted.

Element1,..., elementN: add the element to the array. If no element is specified, you only need to delete the elements in the array.

Return Value:

Returns the input-based parameter extraction array.

Example:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

<Html>

<Head>

<Title> JavaScript Array splice Method </title>

</Head>

<Body>

<Script type = "text/javascript">

Var arr = ["orange", "mango", "banana", "sugar", "tea"];

 

Var removed = arr. splice (2, 0, "water ");

Document. write ("After adding 1:" + arr );

Document. write ("<br/> removed is:" + removed );

 

Removed = arr. splice (3, 1 );

Document. write ("<br/> After adding 1:" + arr );

Document. write ("<br/> removed is:" + removed );

 

</Script>

</Body>

</Html>

This produces the following results:

?

1

2

3

4

After adding 1: orange, mango, water, banana, sugar, tea

Removed is:

After adding 1: orange, mango, water, sugar, tea

Removed is: banana

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.