diff --git a/1-js/02-first-steps/12-while-for/article.md b/1-js/02-first-steps/12-while-for/article.md index a75137ee..95f01678 100644 --- a/1-js/02-first-steps/12-while-for/article.md +++ b/1-js/02-first-steps/12-while-for/article.md @@ -239,7 +239,7 @@ The `continue` directive is a "lighter version" of `break`. It doesn't stop the We can use it if we're done on the current iteration and would like to move on to the next. -The loop above uses `continue` to output only odd values: +The loop below uses `continue` to output only odd values: ```js run no-beautify for (let i = 0; i < 10; i++) {