function test(){ var data = [22,33,44]; var temp = data[0]; data.shift(); return temp; } alert(test()); alert(test()); alert(test());