var numberArray = [0,1,2,3,4,5];
jQuery.each(numberArray , function(index, value){
console.log(index + ':' + value);
});
//outputs: 1:1 2:2 3:3 4:4 5:5
jQuery.each(numberArray , function(index, value){
console.log(index + ':' + value);
});
//outputs: 1:1 2:2 3:3 4:4 5:5
No comments:
Post a Comment