Primitive
array.push
BETAShort name: push
Version: 1.1.0
Return a new array with a single value or multiple items appended to the end.
Back to primitive libraryInputs
| Key | Type | Required | Description |
|---|---|---|---|
| array | array | true | Base array. |
| items | any | true | Single value or array of values to append. |
Outputs
| Key | Type | Required | Description |
|---|---|---|---|
| result | array | false | New array containing base elements then appended value(s). |