how to remove first element from a collection in javascript code example
Example: js remove first item
let myArray = [1, 2, 3, 4, 5];
let removedElement = myArray.shift();
let myArray = [1, 2, 3, 4, 5];
let removedElement = myArray.shift();