Array iterator type
Logs to the console the type of the array index returned by the "var i in ARRAY" construct.
by romkey
JavaScript
for( var i in [ 1 ] )
console.log( typeof( i ) );
by romkey
for( var i in [ 1 ] )
console.log( typeof( i ) );