JSPM

  • Created
  • Published
  • Downloads 10
  • Score
    100M100P100Q46894F
  • License MIT

Discards last n values only.

Package Exports

  • @extra-array/drop-right

Readme

Discards last n values only. 🏃 📼 📦 🌔 📒

Alternatives: drop, dropRight, dropWhile, dropWhileRight.
Similar: take, drop.

This is part of package extra-array.


array.dropRight(x, [n]);
// x: an array
// n: number of values (1)
const array = require("extra-array");

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

array.dropRight(x, 3);
// [ 1, 2 ]


References