-
Notifications
You must be signed in to change notification settings - Fork 1
pop
Subhajit Sahu edited this page May 11, 2020
·
25 revisions
iterable.pop(x);
// x: an iterable
const iterable = require('extra-iterable');
var x = [1, 2, 3];
iterable.pop(x);
// [ 1, 2 ]
var x = [1, 2, 3, 4];
iterable.pop(x);
// [ 1, 2, 3 ]