2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244c6
title: Stand in Line
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/ca8Q8tP'
2019-07-31 11:32:23 -07:00
forumTopicId: 18307
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2019-03-04 07:12:29 -08:00
In Computer Science a < dfn > queue< / dfn > is an abstract < dfn > Data Structure< / dfn > where items are kept in order. New items can be added at the back of the queue and old items are taken off from the front of the queue.
2020-11-27 19:02:05 +01:00
Write a function `nextInLine` which takes an array (`arr` ) and a number (`item` ) as arguments.
2018-09-30 23:01:58 +01:00
Add the number to the end of the array, then remove the first element of the array.
2020-11-27 19:02:05 +01:00
The `nextInLine` function should then return the element that was removed.
# --hints--
`nextInLine([], 5)` should return a number.
```js
assert.isNumber(nextInLine([], 5));
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`nextInLine([], 1)` should return `1`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(nextInLine([], 1) === 1);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`nextInLine([2], 1)` should return `2`
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(nextInLine([2], 1) === 2);
```
2018-10-08 01:01:53 +01:00
2020-11-27 19:02:05 +01:00
`nextInLine([5,6,7,8,9], 1)` should return `5`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(nextInLine([5, 6, 7, 8, 9], 1) === 5);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
After `nextInLine(testArr, 10)` , `testArr[4]` should be `10`
```js
nextInLine(testArr, 10);
assert(testArr[4] === 10);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --before-user-code--
2018-09-30 23:01:58 +01:00
```js
var logOutput = [];
var originalConsole = console
function capture() {
var nativeLog = console.log;
console.log = function (message) {
logOutput.push(message);
if(nativeLog.apply) {
nativeLog.apply(originalConsole, arguments);
} else {
var nativeMsg = Array.prototype.slice.apply(arguments).join(' ');
nativeLog(nativeMsg);
}
};
}
function uncapture() {
console.log = originalConsole.log;
}
capture();
```
2020-11-27 19:02:05 +01:00
## --after-user-code--
2018-09-30 23:01:58 +01:00
```js
2018-10-20 21:02:47 +03:00
uncapture();
testArr = [1,2,3,4,5];
(function() { return logOutput.join("\n");})();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
function nextInLine(arr, item) {
// Only change code below this line
return item;
// Only change code above this line
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
}
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
// Setup
var testArr = [1,2,3,4,5];
// Display code
console.log("Before: " + JSON.stringify(testArr));
console.log(nextInLine(testArr, 6));
console.log("After: " + JSON.stringify(testArr));
```
# --solutions--
2018-09-30 23:01:58 +01:00
```js
var testArr = [ 1,2,3,4,5];
function nextInLine(arr, item) {
arr.push(item);
return arr.shift();
}
```