Diario del capitán, fecha estelar d73.y38/AB
Except for performance reasons (on very rare occasions), I always prefer "forEach" or "map" over "for" statements, but lately I'm programming in Angular, where it's common to use "for" loops in things like "ngFor".
So, again, there are two "for" statements in JavaScript to instruct loops. Yet another source of confusion, as per JavaScripts usual nature!
If you only have to know one thing is: try to avoid for loops... and then... always use "for..of" and never use "for..in".
I have always problems remembering this, so here's a mnemotechnic rule: "rof" is "for" backwards. "for...of" (the right choice) is almost a palindrome.
More information:
UPDATE: By the way, "for..of" is a ES6 feature, so I won't work in, sigh, some browsers. Check the compatibility table and transpile if necessary.
Here's another JavaScript bits we wanted to share with you. 10 things to remember when coding.
Leer el artículoHere's another JavaScript bits we wanted to share with you. Let's talk about the comparison operator, today.
Leer el artículoHere's another JavaScript bits we wanted to share with you. Let's talk about Lerna vs. Yarn workspaces, today.
Leer el artículo