How to loop through an object with for loop in JavaScript

4 Answers

0 votes
const student = { 
    name: 'Tom',
    age: 35,
    hobbies: ['movies', 'reading', 'coding']
};
 
for (let key in student) { 
    let value = student[key];
 
    console.log(key + " - " +  value); 
}

   
   
/*
run:
   
name - Tom
age - 35
hobbies - movies,reading,coding
   
*/

 



answered Jan 22, 2022 by avibootz
edited Jan 16, 2025 by avibootz
0 votes
const student = { 
    name: 'Tom',
    age: 35,
    hobbies: ['movies', 'reading', 'coding']
};
  
for (let [key, value] of Object.entries(student)) {
    console.log(key + " - " +  value);
}

   
   
/*
run:
   
name - Tom
age - 35
hobbies - movies,reading,coding
   
*/

 



answered Jan 22, 2022 by avibootz
edited Jan 16, 2025 by avibootz
0 votes
const student = { 
    name: 'Tom',
    age: 35,
    hobbies: ['movies', 'reading', 'coding']
};
    
for (let key in student) { 
    let value = student[key];
    console.log(value);
    console.log(key + " - " + value[0] + ", " + value[1] + ", " + value[2]); 
    console.log("------------------");
}
 
    
    
/*
run:
    
Tom
name - T, o, m
------------------
35
age - undefined, undefined, undefined
------------------
[ 'movies', 'reading', 'coding' ]
hobbies - movies, reading, coding
------------------
    
*/

 



answered May 17, 2022 by avibootz
edited Jan 16, 2025 by avibootz
0 votes
const student = { 
    name: 'Tom',
    age: 35,
    hobbies: ['movies', 'reading', 'coding']
};
   
Object.keys(student).forEach(function(key) {
    console.log(key, student[key]);
});

   
   
/*
run:
   
name Tom
age 35
hobbies [ 'movies', 'reading', 'coding' ]
   
*/

 



answered Jan 16, 2025 by avibootz

Related questions

1 answer 155 views
2 answers 180 views
4 answers 179 views
4 answers 201 views
2 answers 239 views
1 answer 147 views
2 answers 168 views
...