Question from the Javascript - Fundamentals test

What is the result of logging the shift() method on `arr` to the console ?

Medium

What is the result of logging the shift() method on arr to the console ?

const arr = [1, 2, 3, 4, 5];
console.log(arr.shift());
Author: Adam TbatouStatus: PublishedQuestion passed 9 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!