Adds item to the end of the array in store. Returns a store object representing the newly added item.
declareconststore: Store<number[]>; // assume store starts with [1, 2] constadded = pushToStoreArray(store, 3); // store has [1, 2, 3] added.set(17); // store has [1, 2, 17]
Adds
item
to the end of the array instore
. Returns a store object representing the newly added item.