2018-09-30 23:01:58 +01:00
---
id: 587d78b2367417b2b2512b0f
title: Remove Items from an Array with pop() and shift()
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301165
2021-01-13 03:31:00 +01:00
dashedName: remove-items-from-an-array-with-pop-and-shift
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
Both `push()` and `unshift()` have corresponding methods that are nearly functional opposites: `pop()` and `shift()` . As you may have guessed by now, instead of adding, `pop()` *removes* an element from the end of an array, while `shift()` removes an element from the beginning. The key difference between `pop()` and `shift()` and their cousins `push()` and `unshift()` , is that neither method takes parameters, and each only allows an array to be modified by a single element at a time.
2018-09-30 23:01:58 +01:00
Let's take a look:
2019-04-26 17:21:49 -07:00
2019-05-01 09:33:02 -07:00
```js
2019-04-26 17:21:49 -07:00
let greetings = ['whats up?', 'hello', 'see ya!'];
greetings.pop();
// now equals ['whats up?', 'hello']
greetings.shift();
// now equals ['hello']
```
2018-09-30 23:01:58 +01:00
We can also return the value of the removed element with either method like this:
2019-04-26 17:21:49 -07:00
2019-05-01 09:33:02 -07:00
```js
2019-04-26 17:21:49 -07:00
let popped = greetings.pop();
// returns 'hello'
// greetings now equals []
```
2020-11-27 19:02:05 +01:00
# --instructions--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
We have defined a function, `popShift` , which takes an array as an argument and returns a new array. Modify the function, using `pop()` and `shift()` , to remove the first and last elements of the argument array, and assign the removed elements to their corresponding variables, so that the returned array contains their values.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`popShift(["challenge", "is", "not", "complete"])` should return `["challenge", "complete"]`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.deepEqual(popShift(['challenge', 'is', 'not', 'complete']), [
'challenge',
'complete'
]);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
The `popShift` function should utilize the `pop()` method
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.notStrictEqual(popShift.toString().search(/\.pop\(/), -1);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
The `popShift` function should utilize the `shift()` method
```js
assert.notStrictEqual(popShift.toString().search(/\.shift\(/), -1);
```
# --seed--
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
function popShift(arr) {
2020-03-02 23:18:30 -08:00
let popped; // Change this line
let shifted; // Change this line
2018-09-30 23:01:58 +01:00
return [shifted, popped];
}
console.log(popShift(['challenge', 'is', 'not', 'complete']));
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
2019-04-10 08:33:15 -07:00
function popShift(arr) {
2020-03-02 23:18:30 -08:00
let popped = arr.pop(); // Change this line
let shifted = arr.shift(); // Change this line
2019-04-10 08:33:15 -07:00
return [shifted, popped];
}
2018-09-30 23:01:58 +01:00
```