for...of loops through iterable objects, similar to python for..in loops.
for...of
for..in
var fruit = ['apple', 'banana', 'cherry'] for(var f of fruit) { console.log(f); // 'apple', 'banana', 'cherry' }