JavaScript Array Loop A sample of a for-of loop: const colors = ['red', 'green', 'blue']; for(let color of colors){ console.log(color); } By Octavio|2016-09-24T16:11:56+00:00September 24th, 2016|Categories: Arrays, Syntax|Tags: array, javascript, loop, syntax|0 Comments Share This Story, Choose Your Platform! FacebookTwitterRedditLinkedInTumblrPinterestVk About the Author: Octavio Related Posts JavaScript ES6 Classes JavaScript ES6 Classes September 24th, 2016 | 0 Comments JavaScript Destructuring JavaScript Destructuring September 24th, 2016 | 0 Comments JavaScript Rest and Spread Operator JavaScript Rest and Spread Operator September 24th, 2016 | 0 Comments JavaScript Functions and ‘this’ JavaScript Functions and ‘this’ September 18th, 2016 | 0 Comments JavaScript Function Declaration JavaScript Function Declaration September 18th, 2016 | 0 Comments JavaScript Array every and some JavaScript Array every and some September 17th, 2016 | 0 Comments