From a5175d125ababdcd1a82de0c148b2d4edeaf2228 Mon Sep 17 00:00:00 2001 From: Charlie van Rantwijk Date: Wed, 7 Nov 2018 07:01:17 +0100 Subject: [PATCH] add further reading section to bottom (#22043) * add further reading section to bottom * Reformatted to use "More Information" --- guide/english/javascript/es6/for-of/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guide/english/javascript/es6/for-of/index.md b/guide/english/javascript/es6/for-of/index.md index 6f98b505da..7d5541c4bc 100644 --- a/guide/english/javascript/es6/for-of/index.md +++ b/guide/english/javascript/es6/for-of/index.md @@ -94,3 +94,7 @@ for (const para of paragraphs) // We can add event listeners to each para here } ``` + +#### More Information + +[ES6 In Depth: Iterators and the for-of loop](https://hacks.mozilla.org/2015/04/es6-in-depth-iterators-and-the-for-of-loop/)