I have an array defined as,
var array = [[
["a"],
["t"]
], [
["b"],
["t"]
], [
["c"],
["t"]
]]
The desired output is :
a t
b t
c t
I have tried with
rows.join("\n")
which give
a,t
b,t
c,t
I have a huge list, which needs the highly efficient code that maps each of the inner arrays instead traditional for, while loops
Array.prototypemethods use loops internally. Where is this output supposed to be used?