Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Array.Shift()

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);