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