About Pi Downloads Documentation Plugins Developer Forum Issues

pi.util.Array.remove

Summary

Remove the item at the given index in the array, and return new length.

Syntax

pi.util.Array.remove(array,value)

Usage Example

>>> var list = [3,5,7,9]
>>> list = list.remove(7);
>>> list
[3,5,9]

See Also