foreach jquery

JavaScript
//Array
$.each( arr, function( index, value ){
    sum += value;
});

//Object
$.each( obj, function( key, value ) {
    sum += value;
});$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});
$.each( obj, function( key, value ) {
  alert( key + ": " + value );
});$('.testimonial').each(function(){
    //if statement here 
    // use $(this) to reference the current div in the loop
    //you can try something like...
    if(condition){
    }
 });//looping through list elements in jquery
$('#myUlID li').each(function() {
  console.log($(this));
})$.each( function(key value){$get()}

Source

Also in JavaScript: