Last updated 6 years ago
slice :: (Number start, Number end, Array input) => Array output
Returns a new array, which is the fragment of the input array between the start & end indexes. slice works exactly like .
input
start
end
slice
Like many methods in conductor, slice is a pure function and is automatically curried.
import { slice } from 'conductor' const words = ['Hello', 'Bonsoir', 'Elliot', 'World'] slice(1, 3, words) // ['Bonsoir', 'Elliot']
Here, we simply retrieve all the words which are between the index 1 (inclusively) and the index 3 (exclusively).
1
3
Array.prototype.slice