added For Loop heading (#30382)

Added For Loop heading to top of page.  This is easier to see then the title table
This commit is contained in:
toakes59
2019-03-17 13:22:43 -04:00
committed by Christopher McCormack
parent ea4eaf02b6
commit 542cf6a68f

View File

@ -2,6 +2,8 @@
title: For Loop title: For Loop
--- ---
# For Loop
A `for` loop is a repetitive statement that is used to check for some condition and then, based upon the condition a block of code, is executed repeatedly until the specified condition is satisfied. A `for` loop is a repetitive statement that is used to check for some condition and then, based upon the condition a block of code, is executed repeatedly until the specified condition is satisfied.
The `for` loop is distinguished from other looping statements through an explicit loop counter or loop variable which allows the body of the loop to know the exact sequencing of each iteration. The `for` loop is distinguished from other looping statements through an explicit loop counter or loop variable which allows the body of the loop to know the exact sequencing of each iteration.