Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseUnshift 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);
Note: This is javascript only. C# does not use this feature.