for (statement 1; statement 2; statement 3) {
// code block to be executed
}
// for/in - loops through the properties of an object
for (x in obj) {
// code block to be executed
}
while (condition) {
// code block to be executed
}
do {
// code block to be executed
} while (condition)