-
Notifications
You must be signed in to change notification settings - Fork 5
takeRight
Subhajit Sahu edited this page May 3, 2023
·
12 revisions
Keep last n values only.
Alternatives: take, takeRight, takeWhile, takeWhileRight.
Similar: take, drop.
function takeRight(x, n)
// x: an array
// n: number of values [1]
const xarray = require('extra-array');
var x = [1, 2, 3, 4, 5];
xarray.takeRight(x, 2);
// → [ 4, 5 ]
xarray.takeRight(x, 3);
// → [ 3, 4, 5 ]