Versions with this page:
Versions without this page:
Unshift 将一个或多个元素添加到数组的开头,并返回该数组的新长度。
var arr = new Array ("Hello", "World"); arr.Unshift("This", "is"); // Prints This, is, Hello, World print(arr);
注意:此功能仅适用于 javascript。C# 不使用此功能。