JavaScript
for in
for in is a loop that iterates through the names of an object.
Syntax
for (variable in object) {
code
}
for in is a loop that iterates through the names of an object.
for (variable in object) {
code
}