Definition: The in clause is used with a for/in statement to identify an object to be processed by the statement. The loop code will be run for each of the properties of the object. They will be assigned one at a time to the variable defined by the in clause. In is a reserved word and cannot be used for anything other than declaring a for/in loop.
Examples:
for (var i in myobject) {...}

