Iterate Over Items with JavaScript's for-of Loop

InstructorAkash Gutha

Share this video with your friends

Send Tweet

In this lesson we will understand the For Of loop in Javascript which was introduced in ES6. The for-of loop lets you iterate of an itterable object (array, string, set, or map) and returns each objects value in a specified variable. This excludes plain objects as we will see in the lesson.