@extra-array/take-right
v2.10.19
Published
Keeps last n values only.
Downloads
56
Maintainers
Readme
Keeps last 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.
array.takeRight(x, [n]);
// x: an array
// n: number of values (1)
const array = require("extra-array");
var x = [1, 2, 3, 4, 5];
array.takeRight(x, 2);
// [ 4, 5 ]
array.takeRight(x, 3);
// [ 3, 4, 5 ]