for-in
Description
The for-in of Iterations for JS iterates a loop through the names of an object.
Syntax
for(variable in object)
{
code
}The for-in of Iterations for JS iterates a loop through the names of an object.
for(variable in object)
{
code
}