Versions with this page:
Versions without this page:
删除数组的第一个元素并返回该数组。
var arr = new Array ("Hello", "World"); arr.Shift(); // arr now only contains "World" print ("World");
注意:此功能仅适用于 javascript。C# 不使用此功能。