add(item) → {any}
Adds a new element to the end of the list.
If the item already exists in the list it is not moved.
Parameters
Name | Type | Description |
---|---|---|
item | any | The element to add to this list. |
Returns
any -
The item that was added.
- Source code: utils/ArraySet.js (Line 38)
Please login to continue.