shift/remove n no of first elements from an array
8
This code will remove specified no of elements in an js array , from the beggining of it.
function shiftElts(Obj,elts) {
for( var i = 0; i<elts; i++ ) {
Obj.shift();
}
};



mcheung63
cicero
mycodeofshailendra
nostromo
KennethCC
me
jamesmcm
Can
Kelmi
ysg
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
There are currently no comments for this snippet.