trungvose / blog-comments

Comments for trungk18.com using utterances
1 stars 0 forks source link

experience/how-to-iterate-over-objects-in-typescript/ #7

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

How to iterate over objects in TypeScript - Trung Vo

Use let k: keyof T and a for-in loop to iterate objects when you know exactly what the keys will be or Object.entries to iterate over the keys and values of any object.

https://trungk18.com/experience/how-to-iterate-over-objects-in-typescript/

Arturokin commented 1 year ago

Thank you so much you saved me!