Returns a section of an array.
Syntaxslice( start , [ end ])
The following examples show how to use the slice method. In the first example, all but the last element of myArray
is copied into newArray
. In the second example, only the last two elements of myArray
are copied into newArray
.
var origArray = [3, 5, 7, 9];
var newArray = origArray.slice(0, -1);
document.write(origArray);
document.write("<br/>");
newArray = origArray.slice(-2);
document.write(newArray);
Remarks
The slice method returns an Array object containing the specified portion of arrayObj.
The slice method copies up to, but not including, the element indicated by end. If start is negative, it is treated as length + start , where length is the length of the array. If end is negative, it is treated as length + end where length is the length of the array. If end is omitted, extraction continues to the end of arrayObj. If end occurs before start , no elements are copied to the new array.
See also Specification15.4.4.10 Array.prototype.slice (start, end) ECMAScript® Language Specification Standard ECMA-262 5.1 Edition / June 2011
AttributionsMicrosoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4