Starting my web development journey and building in public.
Self-learner, deliberately choosing full-stack web development.
This account is my learning log:
daily learnings
mistakes & debugging notes
small wins and real progress
#BuildInPublic#100DaysOfCode#LearningInPublic
Took me two days to understand loops.
My mistake: I memorized the syntax (for, while) instead of understanding the concept.
You don't need to mug up syntax - just look at the data and choose the right loop. That's it.
To know more 👇
for...of - for iterable data (arrays, strings) - gives values
for...in - for object properties - gives keys
for - when you need index control
while - when iterations depend on a condition
That's it. Understand the data first - the loop choice becomes obvious.
Starting my web development journey and building in public.
Self-learner, deliberately choosing full-stack web development.
This account is my learning log:
daily learnings
mistakes & debugging notes
small wins and real progress
#BuildInPublic#100DaysOfCode#LearningInPublic