Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Array   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • Array
  • All Members
  • Variables
  • length
  • Constructors
  • Array
  • Functions
  • Add
  • Clear
  • Concat
  • Join
  • Pop
  • Push
  • RemoveAt
  • Reverse
  • Shift
  • Sort
  • Unshift

Array.Add  

function Add (value : object) : void

Description

Adds value to the end of the array.

var arr = new Array ("Hello");
arr.Add("World");
// prints "Hello", "World"
print (arr);