I have array. I have to run loop after indexing 1. I google it but did not find any answer so I did it by use of for loop. Is there any way to get this done by using of jquery without any extra effort . Like using slice and all that.
var myAr= ['a','b','c','d']
for(i=2;i<myAr.length;i++){
alert(myAr[i])
}
$.each(myAr,function(){
// what goes here
})