For of loop is one of a few recent additions to the for loop in JavaScript. It makes it possible to do what is basically a foreach in most other programming languages, like for example C#.
for(var item of array){}
is more or less the same as foreach(var item in array){}
in C#.
Why not just use .map or .forEach? Well, I usually do, but to do that can be a little bit cumbersome when you are dealing with async methods and async await, because then the arrow function in the .map also needs to be async etc.
And it is nice to have a fast way to just loop through an array without having use an old school for loops. They are useful sometimes, and you should know how they work, but it is nice to have a quick and easy way to just loop through an array.
var myArray = [1,2,3,4,5] for(let item of myArray){ console.log(item) }
Arif Khoja is a Developer. He is a Javascript Enthusiatic who loves logical programming and has first hand experience in building a cutting edge internet product using Angular. He is also an open source freak and keen about learning and sharing. He writes Javascript both frontend and backend. He loves learning and sharing tech all the time. He also has a hands on experience in SEO and writes articles about latest emerging technologies.