Skip to main content

Push

Push an item to a list (append an item to the end of a list)

Holly Conrad Smith avatar
Written by Holly Conrad Smith
Updated over 2 weeks ago

Inputs

Name

Abbreviation

Type

Access

Description

List

L

Any

List

The list to push to

Item

I

Any

Item

The item to push

Outputs

Name

Abbreviation

Type

Access

Description

List

L

Any

List

The list with the item pushed

How to

  1. Feed in a list

  2. Feed in the item to push

    This can be any data type (String, Number, Object, Boolean, etc)

    However, for best results, the object type and formatting should match the other items in the list.

    This allows you to continue to process the list as a group using the same nodes without causing. errors

  3. The result is the list with the new item appended to the end of the list

Did this answer your question?