lunes, 13 de julio de 2015

añadir o eliminar elementos de un array javascript

Datos extraidos de:  http://www.w3schools.com/jsref/jsref_splice.asp

JavaScript Array splice() Method

Example

Add items to the array:
var fruits = ["Banana""Orange""Apple""Mango"];
fruits.splice(20"Lemon""Kiwi");
The result of fruits will be:
Banana,Orange,Lemon,Kiwi,Apple,Mango

Try it yourself »
More "Try it Yourself" examples below.

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

The numbers in the table specify the first browser version that fully supports the method.
Method
splice()1.05.51.0YesYes

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

Technical Details

Return Value:A new Array, containing the removed items (if any)
JavaScript Version:1.2

Examples

More Examples

Example

At position 2, add the new items, and remove 1 item:
var fruits = ["Banana""Orange""Apple""Mango"];
fruits.splice(21"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(22);
The result of fruits will be:
Banana,Orange

Try it yourself »

JavaScript Array Reference JavaScript Array Reference


No hay comentarios:

Publicar un comentario

Jesús Moreno - Ingeniero Ténico Informático - consultor Informático

Hola, soy Jesús Moreno Ingeniero Técnico Informático en sistemas por la US y propietario de éste blog. Mi trabajo en los ultimos años se ...