.shift()
Description
Parameters
Usage On Arrays
arr = ["wow","hello","world"]
// setup the array
log arr.shift()
// returns "wow"
// the first value was removedLast updated
arr = ["wow","hello","world"]
// setup the array
log arr.shift()
// returns "wow"
// the first value was removedLast updated