lakshy
July 13, 2022, 12:02pm
1
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
lakshy
July 13, 2022, 12:09pm
3
it’s a number which is an argument.
1 Like
What do the instructions tell you to do with that number?
lakshy
July 13, 2022, 12:15pm
5
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
.
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.
system
Closed
January 12, 2023, 12:23am
10
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.