[jquery] JavaScript Array splice() Method

Posted by RAY.D
2015. 4. 16. 06:06 Web/javascript / jQuery
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.



출처 : http://www.w3schools.com/jsref/jsref_splice.asp


JavaScript Array splice() Method

Array Object Reference JavaScript Array Object

Example

Add items to the array:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.splice(2,0,"Lemon","Kiwi");

The result of fruits will be:

Banana,Orange,Lemon,Kiwi,Apple,Mango

Try it yourself »

Definition and Usage

The splice() method adds/removes items to/from an array, and returns the removed item(s).

Note: This method changes the original array.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The splice() method is supported in all major browsers.


Syntax

array.splice(index,howmany,item1,.....,itemX)

Parameter Values

ParameterDescription
indexRequired. An integer that specifies at what position to add/remove items, Use negative values to specify the position from the end of the array
howmanyRequired. The number of items to be removed. If set to 0, no items will be removed
item1, ..., itemXOptional. The new item(s) to be added to the array

Return Value

TypeDescription
ArrayA new array containing the removed items, if any

Technical Details

JavaScript Version:1.2



More Examples

Example

At position 2, add the new items, and remove 1 item:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.splice(2, 1, "Lemon", "Kiwi");

The result of fruits will be:

Banana,Orange,Lemon,Kiwi,Mango

Try it yourself »


Example

At position 2, remove 2 items:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.splice(2, 2);

The result of fruits will be:

Banana,Orange

Try it yourself »