for
for initialization; condition; post statement {
code to execute
}
for condition { code to execute }
continue
is used to run next iteration of loop and abandon remaining code in current loop iteration. break
is used to break out of the loop.range
keyword.