-
Notifications
You must be signed in to change notification settings - Fork 5
pop
Subhajit Sahu edited this page May 19, 2020
·
22 revisions
Alternatives: [pop], [pop$].
Similar: [push], [pop], [shift], [unshift].
array.pop(x);
// x: an array
const array = require('extra-array');
var x = [1, 2, 3];
array.pop(x);
// [ 1, 2 ]
var x = [1, 2, 3, 4];
array.pop(x);
// [ 1, 2, 3 ]