w3schools.com shift() code example
Example: how to remove first element of array javascript
let arrayCheck = ["Apple", "Grapes", "102", "CodeBreaker"]
arrayCheck.shift()
let arrayCheck = ["Apple", "Grapes", "102", "CodeBreaker"]
arrayCheck.shift()