-
Notifications
You must be signed in to change notification settings - Fork 1
pop
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]