Skip to content

takeRight

Subhajit Sahu edited this page Jun 20, 2020 · 12 revisions

Keeps last n values only. 🏃 📼 📦 🌔 📒

Alternatives: take, takeRight, takeWhile, takeWhileRight.
Similar: take, drop.

iterable.takeRight(x, [n]);
// x: an iterable
// n: number of values (1)
const iterable = require('extra-iterable');

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

[...iterable.takeRight(x, 3)];
// [ 3, 4, 5 ]

references

Clone this wiki locally