Syntax
append anObject to anArray
SemanticsAppends an object to an array. The array does not necessarily have to be created beforehand (see Creating Arrays).
SubstitutablesanArrayCan be any variable or object attribute having the type Array
anObjectCan be any object.
Examples
append item1 to myArray;
  • No labels