object each javascript code example
Example 1: jquery loop through array
var arr = ['one','two','three','four','five'];
$.each(arr, function(index, value){
console.log('The value at arr[' + index + '] is: ' + value);
});
Example 2: object foreach
const obj = {
name: 'Jean-Luc Picard',
rank: 'Captain'
};
Object.keys(obj).forEach(key => {
console.log(key, obj[key]);
});
Example 3: for each element in object
var obj = {
first: "John",
last: "Doe"
};
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
Example 4: jquery loop
const obj = {
one: 1,
two: 2,
three: 3,
four: 4,
five: 5
};
$.each(obj, function(key, value) {
console.log(value);
});
Example 5: js object for each
const obj = {
a: 1,
b: 2,
c: 3
};
for (let key in obj) {
console.log(key + " = " + obj[key]);
}