DEV Community

Discussion on: What's that piece of code that you have to Google *every time*?

Collapse
 
btlm profile image
btlm

I google for for loop syntax every time I switch technologies I use. I used to develop application in PHP with Twig templating, now I work in Node.js and Angular. The hardest thing to remember is when to type in or of :D

{% for user in users %} - in Twig we have in <array>

*ngFor="let item of items" - in Angular we have of <array>

Annoying.