@extra-array/slice.min

Gets a part of array. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:

Usage no npm install needed!

<script type="module">
  import extraArraySliceMin from 'https://cdn.skypack.dev/@extra-array/slice.min';
</script>

README

Gets a part of array. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:

Alternatives: slice, slice$.

This is part of package extra-array.

This is browserified, minified version of @extra-array/slice.
It is exported as global variable array_slice.
CDN: unpkg, jsDelivr.


array.slice(x, [i], [I]);
// x: an array
// i: start index (0)
// I: end index (X)
const array = require("extra-array");

var x = [1, 2, 3, 4, 5];
array.slice(x, 2);
// [ 3, 4, 5 ]

array.slice(x, 2, 4);
// [ 3, 4 ]

array.slice(x, -3, -1);
// [ 3, 4 ]


References