The mighty for...of

// With for...of you can be concise var numbers = [10, 20, 30, 40, 50, 60, 70, 80, 90]; for(let number of numbers) { console.log(number) } // You can break out of it as well var numbers = [10, 20, 30, 40, 50, 60, 70, 80, 90]; for(let number of numbers) { if (number === 50) { break; } console.log(number); } // Example var guests = [{name: 'John Doe', title: 'Mr'}, {name: 'Jane Doe', title: 'Ms'}]; for(let {name} of guests) { console.log('Hello ' + name + '!'); } // Hello John Doe! // Hello Jane Doe!

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.