Statement
Description
break
Breaks out of a loop
continue
Skips a value in a loop
while
Loops a code block while a condition is true
do...while
Loops a code block once, and then while a condition is true
for
for...of
Loops the values of any iterable
for...in
Loops the properties of an object
Last updated 1 year ago