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