lunes, 13 de julio de 2015

Selecionar subconjunto de elementos de array javascript

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

JavaScript Array slice() Method

Example

Select elements from an array:
var fruits = ["Banana""Orange""Lemon""Apple""Mango"];
var citrus = fruits.slice(13);
The result of citrus will be:
Orange,Lemon

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

Definition and Usage

The slice() method returns the selected elements in an array, as a new array object.
The slice() method selects the elements starting at the given start argument, and ends at, but does not include, the givenend argument.
Note: The original array will not be changed.

Browser Support

The numbers in the table specify the first browser version that fully supports the method.
Method
slice()1.0Yes1.0YesYes

Syntax

array.slice(start,end)

Parameter Values

ParameterDescription
startRequired. An integer that specifies where to start the selection (The first element has an index of 0). Use negative numbers to select from the end of an array
endOptional. An integer that specifies where to end the selection. If omitted, all elements from the start position and to the end of the array will be selected. Use negative numbers to select from the end of an array

Technical Details

Return Value:A new Array, containing the selected elements
JavaScript Version:1.2

Examples

More Examples

Example

Select elements using negative values:
var fruits = ["Banana""Orange""Lemon""Apple""Mango"];
var myBest = fruits.slice(-3-1);
The result of myBest will be:
Lemon,Apple

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 ...