For Each Loop across multiple associative arrays
Hi, I'm struggling with the syntax for a For Each loop across multiple associative arrays. For example:q = ["q1"=>11, "q2"=>22, "q3"=>33];
w = ["w1"=>1111, "w2"=>2222, "w3"=>3333];
For single array, just for reference:For Each( {a, i}, q, Show( i, a ) ); // retrieves indices and keys
For Each( { {a, b}, i }, q, Show( i, a, b ) ); // retrieves indices, keys and values
Analogously, across two arrays i...