Select elements from an array:
The result of citrus will be:
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 given end argument.
Note: The original array will not be changed.
![]()
The slice() method is supported in all major browsers.
| Parameter | Description |
|---|---|
| start | Required. 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 |
| end | Optional. 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 |
| Type | Description |
|---|---|
| Array | A new array, containing the selected elements |
| JavaScript Version: | 1.2 |
|---|
Select elements using negative values:
The result of myBest will be:
JavaScript Array Object
Your message has been sent to W3Schools.