From a36ff435556461e6bf3be4ea4171a173443a6b5e Mon Sep 17 00:00:00 2001 From: Teascade Date: Fri, 25 Aug 2017 23:50:54 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ee936c..662bd90 100644 --- a/README.md +++ b/README.md @@ -228,4 +228,4 @@ for (let i = 0; i < 10; i++) { - The first part (`let i = 0` in this example) is the beginning-expression. It can be any expression, and it will be executed as the loop begins weather or not the scope inside the loop will be accessed. - The second part (`i < 10` in this example) is the condition defining weather the loop-scope will be accessed or not. - The third part (`i++` in this example) is the step-expression, which will be executed after each execution of the loop-scope. -- Otherwise `for` is identical to [`while`]("while") +- Otherwise `for` is identical to [`while`](#while)