🔙 shift() Exercises

0/6
0 of 3 exercises★0/6
Exercise 1 of 3
easy
🤔
💨

Need a hint? Click the hint button below!

Predict the Shift

What will the array look like after shift?

Starting array:

[
a
[0]
b
[1]
c
[2]
]
length: 3

After running this code:

1arr.shift();

What will the array look like?