Yes it will. Example.
var one = [1];
$.each(one, function(index) {
alert(one[index]);
});
will alert 1
2
solved Does $.each() execute for one item? [closed]
Yes it will. Example.
var one = [1];
$.each(one, function(index) {
alert(one[index]);
});
will alert 1
2
solved Does $.each() execute for one item? [closed]