Array-slice method. Slices `array` from the `start` index up to, but not including, the `end` index.Study from jonschlinkert/array-slice
npm install array-slice-garray from the start index up to, but not including, the end index. Study from Jon Schlinkert/array-sliceStudy from jonschlinkert/array-slice
Install with npm:
``sh`
$ npm install --save array-slice
`js
var slice = require('array-slice');
var arr = ['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
slice(arr, 3, 6);
//=> ['e', 'f', 'g']
``