for...in for ... in

命令 Instruction Type
Format
for (変数 in オブジェクト名) for (variable in object name)
{ (
処理 Processing
} )
Commentary
オブジェクトが持っているプロパティの数だけ繰り返し処理を行います。 Repeat process as many objects have properties.
サンプルコード Sample code
for (i in Math) for (i in Math)
{ (
outputs[0] = i; outputs [0] = i;
} )