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 TypeScript

4 Answers

0 votes
const student = { 
    name: 'Anakin',
    age: 29,
    hobbies: ['flight', 'lightsaber', 'coding']
};
   
for (let [key, value] of Object.entries(student)) {
    console.log(key + " - " +  value);
}
   
      
      
/*
run:
      
name - Anakin
age - 29
hobbies - flight,lightsaber,coding
      
*/

 



answered Jan 17, 2025 by avibootz
edited Jan 17, 2025 by avibootz
0 votes
const student = { 
    name: 'Anakin',
    age: 29,
    hobbies: ['flight', 'lightsaber', 'coding']
};
  
for (let key in student) {
    let value: any = student[key]; 
    console.log(key + " - " + value);
}
  
     
     
/*
run:
     
name - Anakin
age - 29
hobbies - flight,lightsaber,coding
     
*/

 



answered Jan 17, 2025 by avibootz
0 votes
const student = { 
    name: 'Anakin',
    age: 29,
    hobbies: ['flight', 'lightsaber', 'coding']
};
  
for (let key in student) {
    let value = student[key as keyof typeof student]; 
    console.log(key + " - " + value);
}
  
      
      
/*
run:
      
name - Anakin
age - 29
hobbies - flight,lightsaber,coding
      
*/

 



answered Jan 17, 2025 by avibootz
0 votes
const student = { 
    name: 'Anakin',
    age: 29,
    hobbies: ['flight', 'lightsaber', 'coding']
};
  
for (let key in student) { 
    let value: any = student[key];
    console.log(value);
    console.log(key + " - " + value[0] + ", " + value[1] + ", " + value[2] + ", " + value[3]); 
    console.log("------------------");
}
  
      
      
/*
run:
      
Anakin
name - A, n, a, k
------------------
29
age - undefined, undefined, undefined, undefined
------------------
[ 'flight', 'lightsaber', 'coding' ]
hobbies - flight, lightsaber, coding, undefined
------------------
      
*/

 



answered Jan 17, 2025 by avibootz

Related questions

1 answer 130 views
2 answers 149 views
2 answers 144 views
4 answers 163 views
4 answers 283 views
1 answer 133 views
1 answer 139 views
...