Keeps first n values only.
npm install @extra-array/takeKeeps first n values only.
:package:
:smiley_cat:
:running:
:vhs:
:moon:
:scroll:
:newspaper:
:blue_book:
> Alternatives: [take], [takeRight], [takeWhile], [takeWhileRight].
> Similar: [take], [drop].
> This is part of package [extra-array].
[extra-array]: https://www.npmjs.com/package/extra-array
``javascript`
array.take(x, [n]);
// x: an array
// n: number of values (1)
`javascript
const array = require("extra-array");
var x = [1, 2, 3, 4, 5];
array.take(x, 2);
// [ 1, 2 ]
array.take(x, 3);
// [ 1, 2, 3 ]
``
- Data.List.take: Haskell
- Array.prototype.slice: MDN web docs
- _.take: lodash
- Array.to: sugarjs
[take]: https://github.com/nodef/extra-array/wiki/take
[takeWhile]: https://github.com/nodef/extra-array/wiki/takeWhile
[drop]: https://github.com/nodef/extra-array/wiki/drop
[takeRight]: https://github.com/nodef/extra-array/wiki/takeRight
[takeWhileRight]: https://github.com/nodef/extra-array/wiki/takeWhileRight