fix(curriculum): Learn Introductory JavaScript by Building a Pyramid Generator Step 30 (#54477)

This commit is contained in:
violet.png
2024-04-22 09:11:18 -05:00
committed by GitHub
parent 8b09caa5f8
commit 840f01047c

View File

@@ -7,7 +7,7 @@ dashedName: step-30
# --description--
The <dfn>condition</dfn> of a `for` loop tells the loop how many times it should iterate. When the `condition` becomes true, the loop will stop.
The <dfn>condition</dfn> of a `for` loop tells the loop how many times it should iterate. When the `condition` becomes false, the loop will stop.
In JavaScript, a Boolean value can be either `true` or `false`. These are not strings - you will learn more about the difference later on.