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.Unshift  

function Unshift (newElement : object, optionalElement : object) : int

Description

Unshift adds one or more elements to the beginning of an array and returns the new length of the array.

var arr = new Array ("Hello", "World");
arr.Unshift("This", "is");
// Prints This, is, Hello, World
print(arr);