Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 25 revisions

Removes last value.

Similar: [push], [pop], [shift], [unshift].


xiterable.pop(x);
// x: an iterable
const xiterable = require('extra-iterable');

var x = [1, 2, 3];
xiterable.pop(x);
// → [1, 2]

var x = [1, 2, 3, 4];
xiterable.pop(x);
// → [1, 2, 3]


References

Clone this wiki locally