for, for…of, for…in.
- classic
for (let i = 0; i < n; i++)for index control for…ofiterates array/iterable VALUESfor…initerates object KEYS (avoid on arrays)- prefer
for…of/ array methods over index loops when you don't need the index
See examples/.
Print a multiplication table using nested for loops.