Versions with this page:
Versions without this page:
Elimina el primer elemento del Array y lo devuelve.
var arr = new Array ("Hello", "World"); arr.Shift(); // arr now only contains "World" print ("World");
Nota: Esto es solo de javascript. C# no utiliza esta caraterística.