jquery loop

JavaScript
var arr = ['one','two','three','four','five'];
$.each(arr, function(index, value){
	console.log('The value at arr[' + index + '] is: ' + value);
});$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});
$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});//looping through list elements in jquery
$('#myUlID li').each(function() {
  console.log($(this));
})//Array
$.each( arr, function( index, value ){
    sum += value;
});

//Object
$.each( obj, function( key, value ) {
    sum += value;
});// OBJECTS
const obj = {
  one: 1,
  two: 2,
  three: 3,
  four: 4,
  five: 5
};

$.each(obj, function(key, value) {
  console.log(value);
});

// Outputs: 1 2 3 4 5

Source

Also in JavaScript: