for-of

The for-of JS Iterations iterates a loop through iteratable objects.

Syntax

for(variable of iteratable)
{
    code
}

Examples

1 · array · value

2 · array · key value

3 · string

HomeMenu