.pop()
Description
Parameters
Usage On Arrays
arr = ["wow","hello","world"]
// setup the array
log arr.pop()
// returns "world"
// the last value was removedLast updated
# .pop()
Pop is a method that removes and returns the last value from an array
Pop takes no parameters.
arr = ["wow","hello","world"]
// setup the array
log arr.pop()
// returns "world"
// the last value was removedLast updated