From 6b61befda3bf0f5ec2ac183ca0e64ec762cf19f3 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 25 Sep 2017 20:29:22 +0300 Subject: [PATCH] Spacing --- .../02-first-steps/12-while-for/3-which-value-for/solution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/12-while-for/3-which-value-for/solution.md b/1-js/02-first-steps/12-while-for/3-which-value-for/solution.md index 766278fd..e2e28e75 100644 --- a/1-js/02-first-steps/12-while-for/3-which-value-for/solution.md +++ b/1-js/02-first-steps/12-while-for/3-which-value-for/solution.md @@ -8,8 +8,8 @@ for (let i = 0; i < 5; i++) alert( i ); That can be easily deducted from the algorithm of `for`: -1. Execute once `i=0` before everything (begin). -2. Check the condition `i<5` +1. Execute once `i = 0` before everything (begin). +2. Check the condition `i < 5` 3. If `true` -- execute the loop body `alert(i)`, and then `i++` The increment `i++` is separated from the condition check (2). That's just another statement.