fn vbs arrayPush (VBS2)
From Bohemia Interactive Community
| Editors, please check Policy: Scripting Command Page Syntax. |
Click on the images for descriptions
Introduced in
- Game:
- Virtual Battlespace 2
- Version:
- 1.19
Description
- Description:
- Adds an element to the end of an array and returns the array. The array is passed by reference so changes inside the function will be reflected outside of it.
Syntax
- Syntax:
- [array,element] call fn_vbs_arrayPush
- Parameters:
- array: Array - original array
- element: Anything - added element
- Return Value:
- Array
Examples
- Example 1:
_array = [[1,2,3], 4] call fn_vbs_arrayPush
Additional Information
- Multiplayer:
- Behaviour unknown.

