ractive.push()

edit this page

The Ractive equivalent to Array.push that appends one or more elements to the array at the given keypath and triggers an update event.

ractive.push( keypath, value )

Returns a Promise (see Promises) that will resolve after the update is complete.

keypath String

The keypath of the array to change, e.g. list or order.items.

value

The value to append to the end of the array. One or more values may be supplied.

If the given keypath does not resolve to an array, an error will be thrown.