From 8d099567132eba326bbbd956ea430905d6e85219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Wo=C5=BAny?= <34154591+alojzz@users.noreply.github.com> Date: Sat, 17 Nov 2018 06:17:55 +0100 Subject: [PATCH] Add space after dot (#23137) --- guide/english/javascript/es6/for-of/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/es6/for-of/index.md b/guide/english/javascript/es6/for-of/index.md index 7d5541c4bc..26389399c4 100644 --- a/guide/english/javascript/es6/for-of/index.md +++ b/guide/english/javascript/es6/for-of/index.md @@ -17,7 +17,7 @@ for (const fruit of fruits) The above snippet is going to return us the items in the array above. ## for-of loop in knowing index -What if we want to know the index of each item too.In that case we can iterate over fruits.entries() which gives us the ArrayIterator. +What if we want to know the index of each item too. In that case we can iterate over fruits.entries() which gives us the ArrayIterator. ```javascript for (const fruit of fruits.entries())