Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

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 139 views
2 answers 171 views
4 answers 144 views
4 answers 164 views
2 answers 216 views
1 answer 125 views
2 answers 141 views
...