Basic JavaScript - Stand in Line - X_d28ooJZNR-RLZAbBRv3

Tell us what’s happening:
Describe your issue in detail here.
Idk how i can solve this i dont want to look at solution i just want an explanation

  **Your code so far**
function nextInLine(arr, item) {
// Only change code below this line
arr.push(10);
item = arr.shift();
return item;
// Only change code above this line
}

// Setup
const 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));
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36 OPR/88.0.4412.75

Challenge: Basic JavaScript - Stand in Line

Link to the challenge:

1 Like

Do you understand what item represents here?

1 Like

it’s a number which is an argument.

1 Like

What do the instructions tell you to do with that number?

i have to add it at the end of the array and remove the first one. I tried that with push(item) didn’t work. i feel like i am missing some basics of basics

What was the exact line of code you tried with push(item) because that is not what you wrote above? Above you pushed just the number 10 to arr.

image

That use of push was correct. It is the next line that is not correct. It is close, but is missing something. You should research what value the shift method returns and then make use of it.

will get on it thanks.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.