Versions with this page:
Versions without this page:
Добавить значение value в конец массива.
value
И возвращает новую длину массива.
var arr = new Array ("Hello"); arr.Push("World"); // Prints "Hello", "World" print(arr);
Note: This is javascript only. C# does not use this feature.