For...In Statement

for (variable in object) {
    code to be executed
}

Note: The code in the body of the for...in loop is executed once for each element/property.