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.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
I google for
forloop 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 typeinorof:D{% for user in users %}- in Twig we havein <array>*ngFor="let item of items"- in Angular we haveof <array>Annoying.