Loops and Iterations

JavaScript Loop Statements

Statement

Description

Breaks out of a loop

Skips a value in a loop

Loops a code block while a condition is true

Loops a code block once, and then while a condition is true

Loops a code block while a condition is true

Loops the values of any iterable

Loops the properties of an object

Last updated