javascript
for of
Understanding the For Of Loop in JavaScript As a programmer, it's important to know how to effectively loop through arrays and objects in JavaScript. One way to do this is by using the "for of" loop. Syntax: for (variable of iterable) { // code block to be executed