Push

From NSB App Studio
Revision as of 23:02, 24 July 2019 by Ghenne (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Push(array, item)

Description

The Push() method adds an item to end of an array. This function changes the original array. It returns the number of items in the array after adding the new item.

Example

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("strawberry")

fruits = ["Banana", "Orange", "Apple", "Mango"]
count=Push(fruits,"Strawberry")

Output

The new value of fruits will be:

Banana,Orange,Apple,Mango,Strawberry

Related Items

Array, Dim, LBound, Splice, ReDim