DEV Community

skptricks
skptricks

Posted on

Understanding the JavaScript For...of Loop

Post Link : Understanding the JavaScript For...of Loop

This tutorial explains how to use For...of loop in javascript programming language. The for...of statement creates a loop iterating over iterable objects, including: built-in String, Array, Array-like objects (e.g., arguments or NodeList), TypedArray, Map, Set, and user-defined iterables. It invokes a custom iteration hook with statements to be executed for the value of each distinct property of the object.

Syntax:
for (variable of iterable) {
statement
}

variable - For every iteration the value of the property is assigned to the the variable.
iterable - An object which has enumerable properties and can be iterated upon.

Understanding the JavaScript For...of Loop

Top comments (0)