Returns a new array that is a slice of the receiver. This implementation uses the observable array methods to retrieve the objects for the new slice. ```javascript let arr = ['red', 'green', 'blue']; arr.slice(0); // ['red', 'green', 'blue'] arr.slice(0, 2); // ['r
(beginIndex?: number, endIndex?: number)
| 371 | @public |
| 372 | */ |
| 373 | slice(beginIndex?: number, endIndex?: number): NativeArray<T>; |
| 374 | /** |
| 375 | Used to determine the passed object's first occurrence in the array. |
| 376 | Returns the index if found, -1 if no match is found. |
no outgoing calls
no test coverage detected