how to remove the first item in an array code example
Example: remove first element of array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"]
fruits.shift()
var fruits = ["Banana", "Orange", "Apple", "Mango"]
fruits.shift()