FOR OF
for of is a loop that iterates through iteratable objects.
SYNTAX
for (variable of iteratable) {
code
}
for of is a loop that iterates through iteratable objects.
for (variable of iteratable) {
code
}