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 Node.js

4 Answers

0 votes
const student = { 
    name: 'Arthur',
    age: 27,
    hobbies: ['movies', 'video game', 'coding']
};
  
for (let key in student) { 
    let value = student[key];
    console.log(key + " - " +  value); 
}
 
    
    
/*
run:
    
name - Arthur
age - 27
hobbies - movies,video game,coding
    
*/
 

 



answered Jan 16, 2025 by avibootz
edited Jan 17, 2025 by avibootz
0 votes
const student = { 
    name: 'Arthur',
    age: 27,
    hobbies: ['movies', 'video game', 'coding']
};
  
for (let [key, value] of Object.entries(student)) {
    console.log(key + " - " +  value);
}
 
    
    
/*
run:
    
name - Arthur
age - 27
hobbies - movies,video game,coding
    
*/
 

 



answered Jan 16, 2025 by avibootz
0 votes
const student = { 
    name: 'Arthur',
    age: 27,
    hobbies: ['movies', 'video game', 'coding']
};
  
for (let key in student) { 
    let value = student[key];
    console.log(value);
    console.log(key + " - " + value[0] + ", " + value[1] + ", " + value[2] + ", " + value[3]); 
    console.log("------------------");
}
 
    
    
/*
run:
    
Arthur
name - A, r, t, h
------------------
27
age - undefined, undefined, undefined, undefined
------------------
[ 'movies', 'video game', 'coding' ]
hobbies - movies, video game, coding, undefined
------------------
    
*/
 

 



answered Jan 16, 2025 by avibootz
0 votes
const student = { 
    name: 'Arthur',
    age: 27,
    hobbies: ['movies', 'video game', 'coding']
};
  
Object.keys(student).forEach(function(key) {
    console.log(key, student[key]);
});
 
    
    
/*
run:
    
name Arthur
age 27
hobbies [ 'movies', 'video game', 'coding' ]
    
*/
 

 



answered Jan 16, 2025 by avibootz

Related questions

1 answer 133 views
2 answers 137 views
3 answers 176 views
4 answers 144 views
4 answers 283 views
...